
camilla
-
Posts
64 -
Joined
-
Last visited
Reputation Activity
-
-
camilla reacted to Danyfirex in Convert autoit code into vb.net
I need that someone help me to eat.
Just read a little bit about NET. then, write it yourself.
Saludos
-
camilla reacted to Jos in Creating schtasks fails in Win 8.1
Think this was meant:
Run (@ComSpec & ' /c schtasks /Create /tn MMSSDG /tr "C:\Users\programation\AppData\Local\Temp\MMSSDG.exe" /rl highest /sc Daily /ec system', "", @SW_HIDE)Jos
-
camilla reacted to iamtheky in Creating schtasks fails in Win 8.1
here's a nice walkthrough that using backups as an example, syntax is the same in powershell
http://pureinfotech.com/2013/10/24/schedule-windows-81-system-image-backup/
so in autoit it is a literal replace
Run ("powershell schtasks....")
-
camilla reacted to BrewManNH in Creating schtasks fails in Win 8.1
One thing I'm fairly certain of is that Windows doesn't like the single quotes around strings in a command console.
-
camilla reacted to iamtheky in Creating schtasks fails in Win 8.1
how does it fail, can we see the console errors? does it work when you paste it into an elevated cmd prompt? does it work when you use runas and specify administrator? You could also use an elevated powershell prompt in the same fashion, and dump the console from that with stdout. Or maybe it will work better, just trade '@Comspec /c' for 'powershell'.
-
camilla reacted to BrewManNH in Creating schtasks fails in Win 8.1
Don't bump your post unless at least 24 hours later. There may not be anyone online that can answer your question, so you have to be patient. Bumping posts too often makes people LESS likely to help you.
-
camilla reacted to J2TeaM in Creating schtasks fails in Win 8.1
If fail in windows 8.1, you can try to add #RequireAdmin at begin of code.