我创建了一个 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 属性。您需要先将其删除,然后才能编辑文件。
但这不是唯一的问题。删除 ReadOnly 属性后,您将遇到下一个错误,告诉您它无法写入文件,因为它正在被另一个进程使用(因为
Get-Content
它仍然处于活动状态)。您需要使用临时变量。