积极答复者
Powershel Question

问题
-
Hi Gys
Im hoping someone can help me. i am VERY new to Powershell and made a script to delete some files on reomte machines It worked all day Thursday and Friday and when i tried to run today I get the below error and I have no idea why
Invoke-command -comp (Get-Content C:\Users\AR\Desktop\MissingVDI_One.txt) -filepath C:\Users\AR\Desktop\Powershell\DeleteGUID.ps1
The error is
nvoke-Command : Cannot validate argument on parameter 'ComputerName'. The argument is null or empty. Provide an argument that is not null or empty, and then try the command again.
At line:1 char:22I used the same exact script wwith the txt file and ps1 imn the same place with no issues now it gets this
答案
-
The error has nothing to do with the script. It is from the "Invoke" as the error states. The script file has not even been loaded or evaluated.
There is a blank line in the text file. Remove the blank line and the error will go away. Your friends probably sabotaged the file to watch you squirm.
\_(ツ)_/
全部回复
-
Hi,
Check this link, maybe it solve your problem.
If the error message continues then, is it possible to post the script?
Please, If you think your question has been answered click "Mark as Answer" if just helped click "Vote as helpful". This can be beneficial to other community members reading this forum thread.
-
Hi Here is the scipt
net stop ccmexec
sc.exe config "ccmexec" start= auto
Set-Location Cert:\LocalMachine\SMS\
gci * | where {$_.Subject -like "CN=SMS*"}|Remove-Item -Force
Set-Location Cert:\LocalMachine\My\
gci * | where {$_.Subject -like "CN=Blast*"}|Remove-Item -Force
Remove-Item -LiteralPath "C:\Windows\SMSCFG.ini" -Force -Confirm:$false
net start ccmexec
-
The error has nothing to do with the script. It is from the "Invoke" as the error states. The script file has not even been loaded or evaluated.
There is a blank line in the text file. Remove the blank line and the error will go away. Your friends probably sabotaged the file to watch you squirm.
\_(ツ)_/