system('shutdown /r')
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I wish to restart my machine from MATLAB at 3am say and then call a bat file to run MATLAB from windows task scheduler.
When I put the code:
system('shutdown /r')
at the end of my MATLAB process it restarts the machine fine, but only takes it to the windows login page. Hence task scheduler will not work from this point - it needs to be logged in (caveat - task scheduler can still call processes, but those processes may not be able to run as they need to be logged in -e.g. if they have a GUI).
how can I fully restart my machine from matlab, specifying my password (and perhaps my username/ login)?
I am running win7, MATLAB 2010B, 64bit.
many thanks
6 Kommentare
Kevin Holst
am 1 Mai 2012
You started out your question stating that system('shutdown /r') restarted your computer just fine. That's not really a MATLAB question more like a statement. The real question is how do you get past your login and restart MATLAB, so as Daniel said, you'll probably be better served through a Windows site.
Daniel Shub
am 1 Mai 2012
I am not trying to be negative, I was just trying to guide you someplace that might get you an answer faster.
Akzeptierte Antwort
Jan
am 1 Mai 2012
In Windows 7 this allows to enable an auto login:
control userpasswords2
Start this either in command section of the start menu or per system() command from Matlab. Admin privilegs are required.
[EDITED] I cannot imagine a situation, where a shut-down and auto-login is really helpful. Everything, what can be performed during a shutdown + reboot can be done with an active machine also.
Perhaps a virtual machine could solve your problem. You can restart it from Matlab without the need to shut-down before. And the security problem is smaller.
4 Kommentare
Daniel Shub
am 2 Mai 2012
I think the security issue is bigger than that. I think the machine can be compromised remotely. I believe the password is being stored in plain text someplace, so the security issues are similar to storing the password in plain text in a bat file. Someone with limited remote access may be able to gain your password and then gain "full" control.
Walter Roberson
am 2 Mai 2012
When I was managing unix servers, it wasn't uncommon for them to be up for over a year. Memory fragmentation is not a problem in any modern operating system.
Weitere Antworten (2)
Matlab2010
am 1 Mai 2012
3 Kommentare
Jason Ross
am 1 Mai 2012
an example where you would use "net logon" would be if you needed to get to a network share but you were not a member of the domain. You could use "net logon" to set up the credentials you wanted to use, then use "net use" to map the drive.
An equivalent GUI method is using "map network drive" to map a network drive as someone other than the user you are logged in as.
Jason Ross
am 1 Mai 2012
NOTE: THIS IS A GIANT SECURITY HOLE SINCE YOUR PASSWORD WILL BE STORED IN PLAIN TEXT IN THE REGISTRY. USE AT YOUR OWN RISK AND THINK ABOUT WHAT YOU ARE DOING.
You can set your machine to login automatically using the three Registry keys described in the following article:
Did I mention this is a huge security hole?
3 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!