gwblok / garytown

GaryTown Scripts, Downloads, Etc
251 stars 76 forks source link

Fix line 71 in o365_download.ps1 to $NewFolder = New-Item -Path $ODTExtractPath -ItemType Directory -Force #9

Closed Mrgreen17 closed 2 years ago

Mrgreen17 commented 2 years ago

Fix line 71 in o365_download.ps1 to $NewFolder = New-Item -Path $ODTExtractPath -ItemType Directory -Force

the original line is $NewFolder = New-Item -Path $OSDExtractPath -ItemType Directory -Force

and it needs to be

$NewFolder = New-Item -Path $ODTExtractPath -ItemType Directory -Force

gwblok commented 2 years ago

Thanks

On Mon, Jul 25, 2022, 10:30 AM Mrgreen17 @.***> wrote:

Fix line 71 in o365_download.ps1 to $NewFolder = New-Item -Path $ODTExtractPath -ItemType Directory -Force

the original line is $NewFolder = New-Item -Path $OSDExtractPath -ItemType Directory -Force

and it needs to be

$NewFolder = New-Item -Path $ODTExtractPath -ItemType Directory -Force

— Reply to this email directly, view it on GitHub https://github.com/gwblok/garytown/issues/9, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGIX45LPGX2NWBUJIYH2AZLVV2XLFANCNFSM54SWWI2A . You are receiving this because you are subscribed to this thread.Message ID: @.***>

gwblok commented 2 years ago

Done, thank you!

gwblok commented 2 years ago

Done