digbyp
-
Joined
-
Last visited
Posts posted by digbyp
-
-
-
Thanks for update. Yes, will test. Is there anyway to provide more interaction?
Report what update needs updating
Choose Update to install
Report back that update installed sucessfullyI have written a number of Powershell scripts (use with PCM + POTS) to install software and to check that installation has taken place. But this for a new install and not for updates
-
-
-
-
-
-
Herewith Powershell Scripts
Enable LogMeIn + Start Service
$status = Get-WMIObject win32_service -filter "name='LogMeIn'" -computer "."
#Write-Output ($status.StartMode);
if ($status.StartMode -eq "Auto")
{
Write-Output ("LMI Service is already Automatic");
}
else
{
Set-Service LogMeIn -startupType Automatic
Start-Service LogMeIn
sleep -Milliseconds 500
$status = Get-WMIObject win32_service -filter "name='LogMeIn'" -computer "."
"LMI status is now"
$Status.startmode
}
Disable LogMeIn + Stop service
$status = Get-WMIObject win32_service -filter "name='LogMeIn'" -computer "."
#Write-Output ($status.StartMode);
if ($status.StartMode -eq "Disabled")
{
Write-Output ("LMI Service is already Disabled");
}
else
{
Set-Service LogMeIn -startupType Disabled
Stop-Service LogMeIn
sleep -Milliseconds 500
$status = Get-WMIObject win32_service -filter "name='LogMeIn'" -computer "."
"LMI status is now"
$Status.startmode
}
-
-
-
-
-
-
-
-
-
-
-
Or, you could use the Powershell Plugin (Poweroftheshell) to change the registry.
http://forum.pulseway.com/topic/274-poweroftheshell-plugin-12/
-
-
-
-
You could install the 'Power of the Shell' (POTS) plugin and write a Powershell script to tun the installer. However, you need to get at that machine to install POTS first. But then you installed PCM. Or, did you prep machine and then despatch it somewhere?
Additionally, you could use the terminal option within PCM and run the commands to install the software silently (no user prompts required).
-
Change power scheme via PC Monitor App
in General
It is quite pssible to do this. How many machines? Which operating system?
Below are a couple of links that show powershell scripts to achieve this. Read the articles carefully and test at your own risk!!! What you would do if for a Windows Server for example is this
a) Create the powershell script and place it on the server
c) Create a Scheduled Task to run .bat file
d) In PCM, add your new scheduled task