Monty Posted October 4, 2008 Share Posted October 4, 2008 Hey all, Lets say I have a script and only certain users are allowed to use it (by checking @username). Is there a command that I can use for the file to delete itself if incorrect user runs it??? Example to check user: ----------------------------------------------- If @UserName <> "Bill Gates" Then MsgBox(16, "Restrictions", "Operation cancelled due to user restrictions.") Exit EndIf Link to comment Share on other sites More sharing options...
Valuater Posted October 4, 2008 Share Posted October 4, 2008 type in SciTE "selfdelete" and press the space bar and this selfdelete function will show If @UserName <> "Bill Gates" Then MsgBox(16, "Restrictions", "Operation cancelled due to user restrictions.") _SelfDelete() Exit EndIf Func _SelfDelete($iDelay = 0) Local $sCmdFile FileDelete(@TempDir & "\scratch.bat") $sCmdFile = 'ping -n ' & $iDelay & '127.0.0.1 > nul' & @CRLF _ & ':loop' & @CRLF _ & 'del "' & @ScriptFullPath & '" > nul' & @CRLF _ & 'if exist "' & @ScriptFullPath & '" goto loop' & @CRLF _ & 'del ' & @TempDir & '\scratch.bat' FileWrite(@TempDir & "\scratch.bat", $sCmdFile) Run(@TempDir & "\scratch.bat", @TempDir, @SW_HIDE) EndFunc 8) Link to comment Share on other sites More sharing options...
autoitter Posted October 4, 2008 Share Posted October 4, 2008 Question 12 in the FAQ's describes how you can make a script delete itself:FAQ Link to comment Share on other sites More sharing options...
Monty Posted October 4, 2008 Author Share Posted October 4, 2008 Thank you all for such a quick reply. It works like a charm. REALLY REALLY APPRECIATE IT. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now