DigitalDentist Posted July 21, 2017 Posted July 21, 2017 Can someone tell me why this script works locally from the server but not from Pulseway. I've tested running the script both with impersonation enabled and disabled. Both tests were done on server 2012 R2. One with default Powershell version and one with 5.1. This script runs perfectly fine from the server itself just not through pulseway. I have several scripts that give the same type of error. I'd appreciate any help so I can figure this out. It seems like Pulseway doesn't like certain characters? ForEach ($COMPUTER in (Get-ADComputer -Filter '*' | Select -ExpandProperty Name)) { $key = “SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\Results\Install” $keytype = [Microsoft.Win32.RegistryHive]::LocalMachine $RemoteBase = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($keytype,$Server) $regKey = $RemoteBase.OpenSubKey($key) $KeyValue = $regkey.GetValue(”LastSuccessTime”) $System = (Get-Date -Format "yyyy-MM-dd hh:mm:ss") if ($KeyValue -lt $System) { Write-Host " " Write-Host $computer "Last time updates were installed was: " $KeyValue } } This is what it looks like when ran from the server without involving pulseway
Staff Chris Posted July 24, 2017 Staff Posted July 24, 2017 Hi, At first you will need to get the PS session and then you will be able to run this script via Pulseway: Get-PSSession -ComputerName "computer name" DigitalDentist 1
DigitalDentist Posted July 24, 2017 Author Posted July 24, 2017 Thanks for the assistance. I will add that to the script and see if it's resolved.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now