Powershell
在 ISO 中通過 powershell 安裝 O365
我創建了一個 Office 365 安裝程序,它在其中進行本地安裝並動態更改 SourcePath,我需要從 ISO 文件執行它(我通常使用 USB,但在 VM 中我使用 ISO)
在任何目錄或 USB 中本地執行它都可以正常工作,但從 ISO 卻不能,出現錯誤:
Set-Content : Access to path 'C:\Users\Administrator\AppData\Local\Temp\tmpoffice\configuration.xml' was denied. No E:\SMS\PKG\CM10017B\InstallOffice_OfflineMode.ps1:24 character:164 + ... fficeMgmtCOM="TRUE" SourcePath="'+$PS1dirEOL) | Set-Content $tempconf + ~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Set-Content], UnauthorizedAccessException + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.SetContentCommand
我如何讓它在 ISO 中也能正常工作?我知道 ISO 是只讀的,但我覺得奇怪的是他會嘗試修改不在 ISO 中但在臨時目錄中的東西,但他仍然不能。
$PS1dir = Get-Location #Paths of the configuration $tempdir = "$env:TEMP\tmpoffice" $conf = "$($PS1dir)\configuration.xml" $tempconf = "$env:TEMP\tmpoffice\configuration.xml" #Current path with reformated end of XML line $PS1dirEOL = "$($PS1dir)`" `AllowCdnFallback=`"TRUE`">" #Copy configuration file for temp folder and set variable for same Copy-Item $conf -Destination (New-Item -Path $tempdir -Type Directory -Force) -Recurse -Force #Replace old line with the current folder (Get-Content $tempconf) -replace '<Add OfficeClientEdition=.*', ('<Add OfficeClientEdition="64" Channel="Current" OfficeMgmtCOM="TRUE" SourcePath="'+$PS1dirEOL) | Set-Content $tempconf #Running O365 installation from new configuration file Start-Process cmd.exe -ArgumentList "/c start /MIN $($PS1dir)\setup.exe /configure $tempconf" -Wait Remove-Item -Path $tempdir -Force -Recurse
問題是,該文件是只讀的。.iso 映像上的所有文件都具有隻讀屬性,並且在復製文件時會保留 tha 屬性。您需要先將其刪除,然後才能編輯文件。
Set-ItemProperty $tempconf -Name IsReadOnly -Value $false
但這不是唯一的問題。刪除 ReadOnly 屬性後,您將遇到下一個錯誤,告訴您它無法寫入文件,因為它正在被另一個程序使用(因為
Get-Content
它仍然處於活動狀態)。您需要使用臨時變數。$conf = (Get-Content $tempconf) -replace '<Add OfficeClientEdition=.*', ('<Add OfficeClientEdition="64" Channel="Current" OfficeMgmtCOM="TRUE" SourcePath="'+$PS1dirEOL) $conf | Set-Content $tempconf