-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCLEAN.au3
More file actions
executable file
·28 lines (22 loc) · 866 Bytes
/
CLEAN.au3
File metadata and controls
executable file
·28 lines (22 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Change2CUI=y
#AutoIt3Wrapper_Res_requestedExecutionLevel=asInvoker
#AutoIt3Wrapper_Add_Constants=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.8.1
Author: Alexander Alvonellos
Script Function:
This is a cleaner script to be called by CSC.
#ce ----------------------------------------------------------------------------
#include "../Include/__DEFRAGGLER.au3"
#include "../Include/__CCLEANER.au3"
#include "../Include/__SINGLETON.au3"
#include "../Include/__GENERAL.au3"
;__SINGLETON__SINGLETON()
Func main()
__GENERAL__CERR("In CLEAN, performing cleanup...")
__CCLEANER__CLEAN()
__DEFRAGGLER__DEFRAG()
EndFunc
main()