簡體   English   中英

如何在Powershell中替換遠程計算機上文件中的字符串?

[英]How to replace a string in file on remote computer in Powershell?

我有一台運行Windows Server 2012的VM,上面有一些預期的服務。 我想從台式機遠程更改此VM計算機上的配置文件。 目前,我通過映射遠程服務器的C:驅動器來更改此配置文件,然后更改該文件。 現在這使我無法更改多個服務器,因為我無法將多個服務器c:同時映射到同一驅動器。 而且,映射數百個驅動器也不是理想的選擇。 我通過映射驅動器更改文件的方式是:

$password = <password text> | ConvertTo-SecureString -asPlainText -Force
$username = "admin"
$credential = New-Object System.Management.Automation.PSCredential($username,$password)
net use Z: \\$ipAddress\C$ <password> /user:admin type 'z:\Program Files\lalaland\Data\Settings.xml'

(Get-Content 'z:\Program Files\lalaland\Data\Settings.xml') | ForEach-Object { $_ -replace $oldString, $newString } | Set-Content 'z:\Program Files\lalaland\Data\Settings.xml'
type 'z:\Program Files\lalaland\Data\Settings.xml'
net use z: /delete

因此,我搜索了一個更好的選項,並在https://gallery.technet.microsoft.com/scriptcenter/PowerShell-Replace-String-58fbfa85中找到了此腳本,但它對我不起作用。

我使用此腳本為:

.\Replace-StringInFile.ps1 -ComputerName  <RemoteComputerHostName> -TargetPath 'C:\Program Files\lalaland\Data' -Fil

eName Settings.xml-替換$ oldString -ReplaceWith $ newString-憑據(Get-Credential)

當我運行命令憑據窗口時,會彈出詢問用戶名和密碼的窗口。 我輸入用於映射驅動器的用戶名和密碼,但是會引發以下錯誤:

New-PSSession : [<RemoteHostName>] Connecting to remote server <RemoteHostName> failed with the following error message : The user name or password is incorrect. For more information, see the
about_Remote_Troubleshooting Help topic.
At D:\workspace\Replace-StringInFile.ps1:84 char:14
+ ...  $Session = New-PSSession -ComputerName $Computer -Credential $Creden ...
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotingTransportException
+ FullyQualifiedErrorId : LogonFailure,PSSessionOpenFailed

我不明白的是,當我使用相同的憑據映射驅動器時,它可以正常工作,但使用內部使用New-PSSession的其他腳本不起作用。

任何想法 ?

我可以使用以下cmdlet執行此操作:

function Edit-RemoteFileStringReplace
{
  [cmdletbinding()]
  param([Parameter(Mandatory=$true)][ValidateScript({$_ -match [IPAddress]$_ })][string]$Address,
        [Parameter(Mandatory=$true)][string]$FilePath,
        [Parameter(Mandatory=$true)][string]$Replace,
        [Parameter(Mandatory=$true)][string]$ReplaceWith,
        [Parameter(Mandatory=$true)][System.Management.Automation.PSCredential]$Credential
  )

  $DriveLetter=""
  $FilePathWithoutDriveLetter=""

  $DriveName = $Address.replace('.','x')
  $DriveName = "PSDrive_$DriveName"

  $DriveLetter = (Get-DriveLetterFromPath -Path $FilePath).Substring(0,1)
  $FilePathWithoutDriveLetter = Remove-DriveLetterFromPath -Path $FilePath
  $MappedFilePath="$DriveName" + ":$FilePathWithoutDriveLetter"

  New-PSDrive -Name $DriveName -PSProvider FileSystem -Root \\$Address\$DriveLetter$ -Credential $Credential -ErrorAction Stop
  (Get-Content $MappedFilePath) | ForEach-Object { $_ -replace $Replace, $ReplaceWith } | Set-Content $MappedFilePath
  Remove-PSDrive -Name $DriveName
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM