Avatar of J.R. Sitman
J.R. SitmanFlag for United States of America

asked on 

I am looking for an Alternative to EMCO Remote Shutdown

We use EMCO Remote Shutdown to reboot computers at all our offices.  The program is great, however, the latest version is very expensive.

We currently leave all the computers on so they get updates at night.  I have them scheduled to reboot twice weekly.  

I am looking for suggestions on an alternative.
Remote AccessActive Directory

Avatar of undefined
Last Comment
J.R. Sitman
ASKER CERTIFIED SOLUTION
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of J.R. Sitman
J.R. Sitman
Flag of United States of America image

ASKER

RemoteRebootx is ok but does not allow to specify the days to reboot.  Also, you have to enter the workstations one at a time.  EMCO lets you emulate the Domain
Avatar of Qlemo
Qlemo
Flag of Germany image

What are the exact requirements?
Is it enough just to go through the Active Directory computers and reboot if reachable, running this as a PowerShell task twice a week at a single machine?
Do you need logging, if yes to which extent?
Avatar of J.R. Sitman
J.R. Sitman
Flag of United States of America image

ASKER

I do not want to use PowerShell.  No experience.    

1. Be able to scan the domain and add computers
2. Be able to reboot on a schedule, at least twice a week
3. Get emailed on success or failure
4. Keep records of success or failure
I do not want to use PowerShell.  No experience.   [snide remark on] I don't want to read. No Experience [snide remark off]

The easiest way to get experience is by doing. None of us knew how to walk but after several failed attempts we learned how to.
starter script
# Get a list of computers
$computers = get-adcomputer -filter * | select-object -expandproperty name
#  Item one completed
$mycomputer = $env:computername  # we don't want to restart this computer until the end
foreach ($computer in $computers) {
if ($computer -ne $mycomputer) {
restart-computer -name $computer
}
}
restart-computer -name $mycomputer
}

Open in new window

define exactly what you mean by success or failure?
If computer is off then is it a success or failure?
if we cannot connect to computer is it a failure?
if we send the restart command do we wait for it to come back online? Could be an hour if doing significant updates.
Avatar of J.R. Sitman
J.R. Sitman
Flag of United States of America image

ASKER

Thanks for the feedback and I agree "is by doing".  But not going to learn Powershell.  :-)
EMCO lets you emulate the Domain
Yes, and very expensive
Avatar of J.R. Sitman
J.R. Sitman
Flag of United States of America image

ASKER

RemoteRebootx is not exactly what I was looking for but it was the best option.

Thanks
Active Directory
Active Directory

Active Directory (AD) is a Microsoft brand for identity-related capabilities. In the on-premises world, Windows Server AD provides a set of identity capabilities and services, and is hugely popular (88% of Fortune 1000 and 95% of enterprises use AD). This topic includes all things Active Directory including DNS, Group Policy, DFS, troubleshooting, ADFS, and all other topics under the Microsoft AD and identity umbrella.

86K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo