diff --git a/Get-PC/Private/InstallNet35.ps1 b/Get-PC/Private/InstallNet35.ps1 index 8445957..0b1259f 100644 --- a/Get-PC/Private/InstallNet35.ps1 +++ b/Get-PC/Private/InstallNet35.ps1 @@ -26,9 +26,11 @@ ) if(Test-Connection -ComputerName $HostName -Count 1) { + # Copy source files to circumvent Kerberos double hop problem + Copy-Item -Path \\shscm01\packages\Microsoft\dotNet\3.5 -Destination \\$HostName\c$\Windows\Temp\ -Force -Recurse Invoke-Command -ComputerName $HostName -SessionOption (New-PSSessionOption -NoMachineProfile) -ScriptBlock { - Enable-WindowsOptionalFeature -Online -FeatureName NetFx3 -Source \\shscm01\packages\Microsoft\dotNet\3.5 -LimitAccess -All + Enable-WindowsOptionalFeature -Online -FeatureName NetFx3 -Source C:\Windows\Temp\3.5 -LimitAccess -All } -AsJob -JobName installNet Wait-Job -Name installNet diff --git a/Get-PC/patchnotes.txt b/Get-PC/patchnotes.txt index 07fb22c..40a9b17 100644 --- a/Get-PC/patchnotes.txt +++ b/Get-PC/patchnotes.txt @@ -3,6 +3,7 @@ Patch -Update Removed HP campus from UserProfileBackup -Update Enabled errors in WinProfileRebuild restore just like UserProfileBackup -Update Apps can now find sneaky apps like GSL Will Call and OBIX by looking for a path specified in SHSApps.json +-Fix InstallNet35 now works Patch 2025-4-15 -Update Added Visage to the AppDiff ignore list