Windows Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOperating SystemsWindows Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 31st, 2008, 12:03 AM
gaanee gaanee is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2006
Posts: 163 gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 12 h 36 m 44 sec
Reputation Power: 21
Restart a remote computer running vista

How to restart a remote computer running win vista using remote desktop? In win xp, there used to be an option in taskmanager, but vista doesn't have it. I can restart from command prompt, but I want to know if its possible to do it from a GUI?

Reply With Quote
  #2  
Old July 31st, 2008, 12:24 AM
Doug G Doug G is offline
Grumpier Old Moderator
Dev Shed God 14th Plane (11500 - 11999 posts)
 
Join Date: Jun 2003
Posts: 11,764 Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level)Doug G User rank is General 6th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 1 Week 3 h 27 m 3 sec
Reputation Power: 1364
I think the shutdown gui is disabled by remote desktop, not vista. Shutdown is missing on my w2003 server when in remote desktop, I just use the command line. You could always make a shutdown shortcut.

I usually use VNC instead, which doesn't disable the shutdown from the start button.
__________________
======
Doug G
======
I didn't attend the funeral, but I sent a nice letter saying I approved of it. --Mark Twain

Reply With Quote
  #3  
Old July 31st, 2008, 10:06 AM
thegreekitalian thegreekitalian is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2008
Posts: 25 thegreekitalian User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 8 m 42 sec
Reputation Power: 0
You can restart remote machines using WMI in quite a few scripting / programming languages... here is the one I use in Python:

Code:
import wmi

other_machine = 'machinename' # Name of remote machine
c = wmi.WMI (computer=other_machine, privileges=["RemoteShutdown"])
systems = c.Win32_OperatingSystem(Primary=1)[0]
systems.Reboot();

Reply With Quote
  #4  
Old July 31st, 2008, 10:41 AM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information. Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 3,844 hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)hiker User rank is General 26th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Days 20 h 32 m 20 sec
Reputation Power: 2694
Quote:
Originally Posted by gaanee
How to restart a remote computer running win vista using remote desktop? In win xp, there used to be an option in taskmanager, but vista doesn't have it. I can restart from command prompt, but I want to know if its possible to do it from a GUI?


Not sure about Vista, but with XP I use CTRL-ALT-End and then click shut down.

Reply With Quote
  #5  
Old July 31st, 2008, 04:43 PM
gaanee gaanee is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2006
Posts: 163 gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level)gaanee User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 12 h 36 m 44 sec
Reputation Power: 21
Yes, in XP, ctrl + alt + end works, but in vista it doesn't give option to shutdown. Its not remote desktop, but vista itself doesn't give option to shutdown in taskmanager. I was wondering if its possible to enable it or if there is a different key combination for the shortcut.

Reply With Quote
  #6  
Old August 1st, 2008, 06:04 AM
vpire vpire is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2005
Posts: 175 vpire User rank is Corporal (100 - 500 Reputation Level)vpire User rank is Corporal (100 - 500 Reputation Level)vpire User rank is Corporal (100 - 500 Reputation Level)vpire User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 10 h 37 m 15 sec
Reputation Power: 7
You can ALT+F4 or just open a command prompt on your remote pc and type
Code:
shutdown /r

Reply With Quote
  #7  
Old August 1st, 2008, 10:16 AM
seack79 seack79 is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: May 2004
Location: surfing the interwebz
Posts: 1,662 seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level)seack79 User rank is General 5th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Week 3 Days 2 h 11 m 23 sec
Reputation Power: 1308
If you open a command prompt make sure you select "Run As Administrator" before you open the command prompt.

Reply With Quote
  #8  
Old August 1st, 2008, 10:45 PM
wulawula wulawula is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2008
Posts: 12 wulawula Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 1 h 52 m 25 sec
Reputation Power: 0
Quote:
Not sure about Vista, but with XP I use CTRL-ALT-End and then click shut down.


Yeah, that is the exactly what I do. An additional notice is that you need to set up the remote pc for automatic bootup without typing in password in logon screen. Otherwise the remote pc halts there and you don't have access after restart.


____________________________________
Clean Recent Documents List In Start Menu

Reply With Quote
Reply

Viewing: Dev Shed ForumsOperating SystemsWindows Help > Restart a remote computer running vista


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
Stay green...Green IT