NSIS Question

Ask other users about problems encountered with portable apps or help by posting solutions to existing problems.
Post Reply
Message
Author
User avatar
Magibon
Posts: 177
Joined: Thu Feb 24, 2011 4:24 pm

NSIS Question

#1 Post by Magibon »

I have been studying NSIS to make my portable applications.
I find it much cleaner than Spoon, JauntePE, and ThinApp.

I have successfully built a few apps already.

But i have run into an app that creates a folder in:

Code: Select all

- C:\ProgramData\Temp
- C:Users\All Users\Temp 
I have tried:

Code: Select all

RMdir /r "%ALLUSERSPROFILE%/Temp"

Code: Select all

RMdir "%ALLUSERSPROFILE%/Temp"

Code: Select all

RMdir "$ALLUSERSPROFILE/Temp"

without success ..

Are there any NSIS pros in here?
Everything else is working spectacularly, i just need to clean this TEMP folder.
NOTE: if i delete in C:\ProgramData .. the TEMP in AllUsers is also deleted.

Any help would be much appreicated.


==========================================================



NEVERMIND!

WOO HOOO.. I FOUND THE ANSWER RIGHT AFTER POSTING THIS :)

F.Y.I

Code: Select all

SetShellVarContext all

Post Reply