(imported topic written by TommyG91)
-
When authoring fixlets, do I need to put in code to delete the install files after I run them? I don’t want to orphan install files on the clients.
-
Can anyone help me with this syntax below? I don’t want to hard code the path to the system32 folder, as it’s not always the same.
This works:
move “__Download\file.exe” “C:\WINDOWS\system32\file.exe”
But this does not work:
move “__Download\file.exe” (location of system folder & “\system32\file.exe”)
Thanks!
Tom
(imported comment written by snoczp91)
Did you try %systemroot%\system32 ?
Noah
3
(imported comment written by NoahSalzman)
When you use Relevance expressions (“location of system folder”) in side of Actionscript you need to put the Relevance in curly braces.
Your move line becomes:
move “__Download\file.exe” “{location of system folder & “\system32\file.exe”}”
1 Like
(imported comment written by TommyG91)
noah
When you use Relevance expressions (“location of system folder”) in side of Actionscript you need to put the Relevance in curly braces.
Your move line becomes:
move “__Download\file.exe” “{location of system folder & “\system32\file.exe”}”
Noah, thanks for the advice. It worked!