Hi guys
I live in Iran and I've started to learn programming language nsis.
Is there any way to do with the programming language that the system is reset and automatically go into Safe Mode?
If the instruction
Thanks
Restart pc and Goto Safe Mode AUTOMATIC
9 posts
You would have to do some research to find how if/how it can be done (CleanBoot entry in the registry?), then we can tell you how to perform the action in NSIS code...
hi my friend
I got about this searching.
But I could not do anything, so I'd ask for help
I got about this searching.
But I could not do anything, so I'd ask for help
This forum is strictly for NSIS questions, you cannot expect us to know every Windows related task.Originally Posted by r2du-soft View PostI got about this searching.
But I could not do anything, so I'd ask for help
http://www.pcreview.co.uk/forums/do-...-t4061153.html seems to indicate that msconfig can do it so try running Process Monitor and see which changes it makes to the system. You could also try asking on Stackoverflow...
tanks
im find code for set windows to safe mode
but i need convert codes to nsis,can You help me?
my codes is cmd code!
my codes is:
tanks
im find code for set windows to safe mode
but i need convert codes to nsis,can You help me?
my codes is cmd code!
my codes is:
How do I convert this code to NSIS?
bcdedit /deletevalue {current} safeboot
bcdedit /set {current} safeboot Minimal
bcdedit /set {current} safeboot network
tanks
taaaaaanks 😉
Worked This:
Worked This:
nsExec::Exec 'bcdedit /deletevalue {current} safeboot'
nsExec::Exec 'bcdedit /set {current} safeboot Minimal'
nsExec::Exec 'bcdedit /set {current} safeboot network'
But A Problem!
this Code Not Worken On Windows 64 Bit
I Test This On Windows 7 64Bit
this Code Not Worken On Windows 64 Bit
I Test This On Windows 7 64Bit
What Work On Windows 86 Bit But Not Work On Windows 64 Bit?!!!
nsExec::Exec 'bcdedit /set {current} safeboot Minimal'
yeeeeeeeeee
I Can Fix THIS!!!!!!
I Can Fix THIS!!!!!!
Tanks guys
!include "x64.nsh"
Section
${DisableX64FSRedirection}
Exec '"bcdedit" /set {current} safeboot Minimal'
Sectionend
Glad you managed to fix this on your own. Also the correct spelling is 'Thanks'.