Nonprivileged: notallowed.au3

File notallowed.au3, 1017 bytes (added by pcfreak, 11 years ago)

notallowed.au3 (needed for security)

Line 
1#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
2#AutoIt3Wrapper_Outfile=notallowed.exe
3#AutoIt3Wrapper_Res_Comment=not allowed
4#AutoIt3Wrapper_Res_Description=Show not allowed
5#AutoIt3Wrapper_Res_Fileversion=0.1
6#AutoIt3Wrapper_Res_LegalCopyright=(c) 2013 Der PCFreak
7#AutoIt3Wrapper_Run_Tidy=y
8#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
9#cs ----------------------------------------------------------------------------
10
11 AutoIt Version: 3.3.8.1
12 Author:         Peter Murr
13
14 Script Function:
15        Show the message "This function is not allowed..."
16
17#ce ----------------------------------------------------------------------------
18
19; Script Start - Add your code below here
20;MsgBox features: Title=Yes, Text=Yes, Buttons=OK, Icon=Warning, Timeout=8 ss
21MsgBox(48,"Forbidden","Opening the logfiles or editing the configuration" & @CRLF & "is not allowed within the program." & @CRLF & "Please manually go to the appropriate folder and open/edit the files manually!",8)
22