<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Powershell_Util_Functions</id>
	<title>Powershell Util Functions - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Powershell_Util_Functions"/>
	<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Powershell_Util_Functions&amp;action=history"/>
	<updated>2026-04-04T07:23:16Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>https://tech.uvoo.io/index.php?title=Powershell_Util_Functions&amp;diff=1738&amp;oldid=prev</id>
		<title>Busk: Created page with &quot;Tempdir ``` function New-TemporaryDirectory {   $parent = [System.IO.Path]::GetTempPath()   [string] $name = [System.Guid]::NewGuid()   # $name = [System.IO.Path]::GetRandomFi...&quot;</title>
		<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Powershell_Util_Functions&amp;diff=1738&amp;oldid=prev"/>
		<updated>2021-05-22T17:44:19Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Tempdir ``` function New-TemporaryDirectory {   $parent = [System.IO.Path]::GetTempPath()   [string] $name = [System.Guid]::NewGuid()   # $name = [System.IO.Path]::GetRandomFi...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Tempdir&lt;br /&gt;
```&lt;br /&gt;
function New-TemporaryDirectory {&lt;br /&gt;
  $parent = [System.IO.Path]::GetTempPath()&lt;br /&gt;
  [string] $name = [System.Guid]::NewGuid()&lt;br /&gt;
  # $name = [System.IO.Path]::GetRandomFileName()&lt;br /&gt;
  New-Item -ItemType Directory -Path (Join-Path $parent $name)&lt;br /&gt;
}&lt;br /&gt;
$global:tmpdir = $(New-TemporaryDirectory)&lt;br /&gt;
```&lt;/div&gt;</summary>
		<author><name>Busk</name></author>
	</entry>
</feed>