-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLozStartUpModule.psm1
More file actions
305 lines (260 loc) · 12.5 KB
/
LozStartUpModule.psm1
File metadata and controls
305 lines (260 loc) · 12.5 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
function Start-CaTScheduler
{
param
(
$ErrorActionPreference = "Stop",
$InformationPreference = "Continue",
[String]$PathStatementStartup = "",
[Int]$Start = $null
)
function Start-Logs
{
[String]$LogDirectoryPath = "$PathStatementStartup\PowerLozLogs"
[Bool]$LogDirectoryTest = Test-Path -Path $LogDirectoryPath -PathType Container
if ($LogDirectoryTest -eq $false)
{
New-Item -Path $LogDirectoryPath -ItemType "directory" -Force
[Int]$LogDirCreate = 1
}
else
{
[Int]$LogDirCreate = 0
}
[String]$ErrorLogPath = "$PathStatementStartup\PowerLozLogs\LozErrorLog.log"
[Bool]$ErrorLogTest = Test-Path -Path $ErrorLogPath -PathType Leaf
if ($ErrorLogTest -eq $false)
{
New-Item -Path $ErrorLogPath -ItemType "File" -Force
[Int]$ErrorLogCreate = 1
}
else
{
[Int]$ErrorLogCreate = 0
}
[String]$InfoLogPath = "$PathStatementStartup\PowerLozLogs\LozInfoLog.log"
[Bool]$InfoLogTest = Test-Path -Path $InfoLogPath -PathType Leaf
if ($InfoLogTest -eq $false)
{
New-Item -Path $InfoLogPath -ItemType "File" -Force
[Int]$InfoLogCreate = 1
}
else
{
[Int]$InfoLogCreate = 0
}
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) Function Get-StartupItems executed sucessfully. Startup script successful."
if (($LogDirCreate -eq 1) -or ($LogDirCreate -eq 0))
{
if ($LogDirCreate -eq 1)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) Created $LogDirectoryPath because the path did not exist on start up. Function: Start-CaTScheduler"
}
elseif ($LogDirCreate -eq 0)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) $LogDirectoryPath good. Function: Start-CaTScheduler"
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 3 -Message "(82)A. Parent Function: Start-CaTScheduler | Variable LogDirCreate: $LogDirCreate (Should equal 0 or 1)"
Exit-CaTScheduler
Exit
}
}
if (($ErrorLogCreate -eq 1) -or ($ErrorLogCreate -eq 0))
{
if ($ErrorLogCreate -eq 1)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) Created $ErrorLogPath because the path did not exist on start up. Function: Start-CaTScheduler"
}
elseif ($ErrorLogCreate -eq 0)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) $ErrorLogPath good. Function: Start-CaTScheduler"
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 3 -Message "(82)B. Parent Function: Start-CaTScheduler | Variable ErrorLogCreate: $ErrorLogCreate (Should equal 0 or 1)"
Exit-CaTScheduler
Exit
}
}
if (($InfoLogCreate -eq 1) -or ($InfoLogCreate -eq 0))
{
if ($InfoLogCreate -eq 1)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) Created $InfoLogPath because the path did not exist on start up. Function: Start-CaTScheduler"
}
elseif ($InfoLogCreate -eq 0)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) $InfoLogPath good. Function: Start-CaTScheduler"
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 3 -Message "(82)C. Parent Function: Start-CaTScheduler | Variable InfoLogCreate: $InfoLogCreate (Should equal 0 or 1)"
Exit-CaTScheduler
Exit
}
}
return $true
}
function Start-ConfigurationFiles
{
[String]$ConfigDirectoryPath = "$PathStatementStartup\PowerLozConfigurationFiles"
[Bool]$ConfigDirectoryTest = Test-Path -Path $ConfigDirectoryPath -PathType Container
if ($ConfigDirectoryTest -eq $false)
{
New-Item -Path $ConfigDirectoryPath -ItemType "directory" -Force
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) Created $ConfigDirectoryPath because the path did not exist on start up. Function: Start-CaTScheduler"
}
elseif ($ConfigDirectoryTest -eq $true)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) $ConfigDirectoryPath good. Function: Start-CaTScheduler"
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 3 -Message "(83)A. Parent Function: Start-CaTScheduler | Variable ConfigDirectoryTest: $ConfigDirectoryTest (Should equal true or false)"
Exit-CaTScheduler
Exit
}
[String]$SavedPathsPath = "$PathStatementStartup\PowerLozConfigurationFiles\LozSavedPaths.json"
[Bool]$SavedPathsTest = Test-Path -Path $SavedPathsPath -PathType Leaf
if ($SavedPathsTest -eq $false)
{
New-Item -Path $SavedPathsPath -ItemType "File" -Force
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) Created $SavedPathsPath because the path did not exist on start up. Function: Start-CaTScheduler"
}
elseif ($SavedPathsTest -eq $true)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) $SavedPathsPath good. Function: Start-CaTScheduler"
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 3 -Message "(83)B. Parent Function: Start-CaTScheduler | Variable SavedPathsTest: $SavedPathsTest (Should equal true or false)"
Exit-CaTScheduler
Exit
}
[String]$TaskNumberPath = "$PathStatementStartup\PowerLozConfigurationFiles\LozTaskNumber.txt"
[Bool]$TaskNumberTest = Test-Path -Path $TaskNumberPath -PathType Leaf
if ($TaskNumberTest -eq $false)
{
New-Item -Path $TaskNumberPath -ItemType "File" -Force
0 | Out-File -FilePath $TaskNumberPath
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) Created $TaskNumberPath because the path did not exist on start up. Function: Start-CaTScheduler"
}
elseif ($TaskNumberTest -eq $true)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) $TaskNumberPath good. Function: Start-CaTScheduler"
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 3 -Message "(83)C. Parent Function: Start-CaTScheduler | Variable TaskNumberTest: $TaskNumberTest (Should equal true or false)"
Exit-CaTScheduler
Exit
}
[String]$ScheduledTasksPath = "$PathStatementStartup\PowerLozConfigurationFiles\LozScheduledTasks.json"
[Bool]$ScheduledTasksTest = Test-Path -Path $ScheduledTasksPath -PathType Leaf
if ($ScheduledTasksTest -eq $false)
{
New-Item -Path $ScheduledTasksPath -ItemType "File" -Force
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) Created $ScheduledTasksPath because the path did not exist on start up. Function: Start-CaTScheduler"
}
elseif ($ScheduledTasksTest -eq $true)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) $ScheduledTasksPath good. Function: Start-CaTScheduler"
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 3 -Message "(83)D. Parent Function: Start-CaTScheduler | Variable ScheduledTasksTest: $ScheduledTasksTest (Should equal true or false)"
Exit-CaTScheduler
Exit
}
return $true
}
function Start-ScheduledTaskScript
{
[String]$GetTasksScriptPath = "$PathStatementStartup\LozFindScheduledTasks.ps1"
Start-Process -FilePath "powershell.exe" -ArgumentList "-NoProfile -WindowStyle Hidden -File `"$GetTasksScriptPath`"" -WindowStyle Hidden -Verb RunAs
return $true
}
function Get-NewOrSaved
{
[String]$SavedPathsPath = "$PathStatementStartup\PowerLozConfigurationFiles\LozSavedPaths.json"
$HashtableDataStartup = Get-Content -Path $SavedPathsPath | ConvertFrom-Json
$PathHashTableStartup = @{}
foreach ($Item in $HashtableDataStartup)
{
$PathHashTableStartup[$Item.Name] = $Item.Value
}
if ($PathHashTableStartup.Count -eq 0)
{
[Int]$NewOrSavedStartup = 1
}
elseif ($PathHashTableStartup.Count -gt 0)
{
[Int]$NewOrSavedStartup = 0
}
else
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 2 -Message "(Startup) General error. Function: Start-CaTScheduler | Variable PathHashTableStartup ($PathHashTableStartup) is not equal to 0 or greater than 0."
}
return $NewOrSavedStartup
}
[String]$ErrorTwo = "Startup failed"
if ($Start -eq 1)
{
[Bool]$LogsGood = Start-Logs
if ($LogsGood -eq $true)
{
[Bool]$ConfigGood = Start-ConfigurationFiles
if ($ConfigGood -eq $true)
{
[Bool]$ScriptGood = Start-ScheduledTaskScript
if ($ScriptGood -eq $true)
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) Script GetScheduledTasks.ps1 started sucessfully"
[Int]$NewOrSavedStartup = Get-NewOrSaved
if (($NewOrSavedStartup -eq 1) -or ($NewOrSavedStartup -eq 0))
{
Invoke-ReadWrite -OperationChoice 1 -PathStatementReadWrite $PathStatementStartup -LogType 1 -Message "(Startup) Function Start-CaTScheduler executed sucessfully. Startup module successful."
Get-Menu -ChooseMenu 1 -PathStatementMenu $PathStatementStartup -NewOrSavedMenu $NewOrSavedStartup
}
else
{
Write-Error -Message "$ErrorTwo"
Exit
}
}
else
{
Write-Error -Message "$ErrorTwo"
Exit
}
}
else
{
Write-Error -Message "$ErrorTwo"
Exit
}
}
else
{
Write-Error -Message "$ErrorTwo"
Exit
}
}
else
{
Write-Error -Message "$ErrorTwo"
Exit
}
}
Function Exit-CaTScheduler
{
Write-Information -MessageData ""
[Console]::ForegroundColor = [ConsoleColor]::Cyan
Write-Information -MessageData "Thank you for using Power-Loz as your backup utility."
Write-Information -MessageData "Have a nice day!"
[Console]::ResetColor()
Start-Sleep -Seconds 3
Exit
}
Export-ModuleMember -Function Start-CaTScheduler, Exit-CaTScheduler