-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOneDriveSync.ps1
233 lines (194 loc) · 7.79 KB
/
OneDriveSync.ps1
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
$Version = " -- Version: 1.1.1"
# COMMON coding
CLS
$StatusOBJ = [PSCustomObject] [ordered] @{Scripterror = $false;
ScriptChange = $false;
ScriptAction = $false;
}
$InformationPreference = "Continue"
$WarningPreference = "Continue"
$ErrorActionPreference = "Stop"
function Report ([string]$level, [string]$line, [object]$Obj, [string]$file ) {
switch ($level) {
("N") {$rptline = $line}
("H") {
$rptline = "-------->".Padright(10," ") + $line
}
("I") {
$rptline = "Info *".Padright(10," ") + $line
}
("A") {
$rptline = "Caution *".Padright(10," ") + $line
}
("B") {
$rptline = " *".Padright(10," ") + $line
}
("C") {
$rptline = "Change *".Padright(10," ") + $line
$obj.scriptchange = $true
}
("W") {
$rptline = "Warning *".Padright(10," ") + $line
$obj.scriptaction = $true
}
("E") {
$rptline = "Error *".Padright(10," ") + $line
$obj.scripterror = $true
}
("G") {
$rptline = "GIT: *".Padright(10," ") + $line
}
default {
$rptline = "Error *".Padright(10," ") + "Messagelevel $level is not valid"
$Obj.Scripterror = $true
}
}
Add-Content $file $rptline
}
try {
$Node = " -- Node: " + $env:COMPUTERNAME
$d = Get-Date
$Datum = " -- Date: " + $d.ToString("dd-MM-yyyy")
$Tijd = " -- Time: " + $d.ToString("HH:mm:ss")
$myname = $MyInvocation.MyCommand.Name
$FullScriptName = $MyInvocation.MyCommand.Definition
$mypath = $FullScriptName.Replace($MyName, "")
$Scriptmsg = "*** STARTED *** " + $mypath + " -- PowerShell script " + $MyName + $Version + $Datum + $Tijd +$Node
Write-Information $Scriptmsg
$LocalInitVar = $mypath + "InitVar.PS1"
$InitObj = & "$LocalInitVar" "OBJECT"
if ($Initobj.AbEnd) {
# Write-Warning "YES"
throw "INIT script $LocalInitVar Failed"
}
# END OF COMMON CODING
# Init reporting file
$dir = $ADHC_TempDirectory + $ADHC_OneDriveSync.Directory
New-Item -ItemType Directory -Force -Path $dir | Out-Null
$Tempfile = $dir + $ADHC_OneDriveSync.NAme
Set-Content $Tempfile $Scriptmsg -force
foreach ($entry in $InitObj.MessageList){
Report $entry.Level $entry.Message $StatusObj $Tempfile
}
$ODlist = Get-ChildItem "$ADHC_OneDrive" -file -recurse -force | Select-Object FullName,Attributes
# $ODlist | Out-GridView
$Totaal = $ODlist.count
$n = 0
$percentiel = [math]::floor($totaal / 10)
$part = $percentiel
$attrlist = @()
Report "I" "OneDrive directory $ADHC_OneDrive contains $totaal files" $StatusObj $Tempfile
$start = Get-DAte
Report "I" "Reading all files starts: $start" $StatusObj $Tempfile
foreach ($file in $ODlist) {
$attr = $file.Attributes
if (!($attrlist -contains $file.Attributes)) {
$attrlist += $attr
}
$n = $n + 1;
if ($n -eq $part) {
$percentage = [math]::round($n * 100 / $totaal)
Write-host "Processing $n van $totaal ($percentage %)"
$part = $part + $percentiel
}
try {
$f = $file.FullName
$x = Get-Content $f
}
catch {
Report "A" "Could not read $f (attribute = $attr)" $StatusObj $Tempfile
}
#if ($n -eq 256) {break}
}
$end = Get-Date
Report "I" "Reading all files ends : $end" $StatusObj $Tempfile
Report "I" "Files read: $n" $StatusObj $Tempfile
Report "I" "Attributes encountered: " $StatusObj $Tempfile
foreach ($at in $attrlist) {
Report "B" "- $at " $StatusObj $Tempfile
}
}
catch {
$StatusObj.scripterror = $true
$ErrorMessage = $_.Exception.Message
$FailedItem = $_.Exception.ItemName
$Dump = $_.Exception.ToString()
}
finally {
# Init jobstatus file
$dir = $ADHC_OutputDirectory + $ADHC_Jobstatus
New-Item -ItemType Directory -Force -Path $dir | Out-Null
$p = $myname.Split(".")
$process = $p[0]
$jobstatus = $ADHC_OutputDirectory + $ADHC_Jobstatus + $ADHC_Computer + "_" + $Process + ".jst"
Report "N" " " $StatusObj $Tempfile
$returncode = 99
if (($StatusObj.scripterror) -and ($returncode -eq 99)) {
$msg = ">>> Script ended abnormally"
Report "N" $msg $StatusObj $Tempfile
Report "N" " " $StatusObj $Tempfile
$dt = Get-Date
$jobline = $ADHC_Computer + "|" + $process + "|" + "9" + "|" + $version + "|" + $dt.ToString("dd-MM-yyyy HH:mm:ss")
Set-Content $jobstatus $jobline
Add-Content $jobstatus "Failed item = $FailedItem"
Add-Content $jobstatus "Errormessage = $ErrorMessage"
Add-Content $jobstatus "Dump info = $dump"
Report "E" "Failed item = $FailedItem" $StatusObj $Tempfile
Report "E" "Errormessage = $ErrorMessage" $StatusObj $Tempfile
Report "E" "Dump info = $dump" $StatusObj $Tempfile
$returncode = 16
}
if (($StatusObj.scriptaction) -and ($returncode -eq 99)) {
$msg = ">>> Script ended normally with action required"
Report "W" $msg $StatusObj $Tempfile
Report "N" " " $StatusObj $Tempfile
$dt = Get-Date
$jobline = $ADHC_Computer + "|" + $process + "|" + "6" + "|" + $version + "|" + $dt.ToString("dd-MM-yyyy HH:mm:ss")
Set-Content $jobstatus $jobline
$returncode = 8
}
if (($StatusObj.scriptchange) -and ($returncode -eq 99)) {
$msg = ">>> Script ended normally with reported changes, but no action required"
Report "C" $msg $StatusObj $Tempfile
Report "N" " " $StatusObj $Tempfile
$dt = Get-Date
$jobline = $ADHC_Computer + "|" + $process + "|" + "3" + "|" + $version + "|" + $dt.ToString("dd-MM-yyyy HH:mm:ss")
Set-Content $jobstatus $jobline
$returncode = 4
}
if ($returncode -eq 99) {
$msg = ">>> Script ended normally without reported changes, and no action required"
Report "I" $msg $StatusObj $Tempfile
Report "N" " " $StatusObj $Tempfile
$dt = Get-Date
$jobline = $ADHC_Computer + "|" + $process + "|" + "0" + "|" + $version + "|" + $dt.ToString("dd-MM-yyyy HH:mm:ss")
Set-Content $jobstatus $jobline
$returncode = 0
}
try { # Free resource and copy temp file
$deffile = $ADHC_OutputDirectory + $ADHC_OneDriveSync.Directory + $ADHC_OneDriveSync.Name
$CopMov = & $ADHC_CopyMoveScript $TempFile $deffile "MOVE" "REPLACE" $TempFile
}
Catch {
$ErrorMessage = $_.Exception.Message
$FailedItem = $_.Exception.ItemName
$Dump = $_.Exception.ToSTring()
$dt = Get-Date
$jobline = $ADHC_Computer + "|" + $process + "|" + "9" + "|" + $version + "|" + $dt.ToString("dd-MM-yyyy HH:mm:ss")
Set-Content $jobstatus $jobline
Add-Content $jobstatus "Failed item = $FailedItem"
Add-Content $jobstatus "Errormessage = $ErrorMessage"
Add-Content $jobstatus "Dump info = $Dump"
$Returncode = 16
}
Finally {
$d = Get-Date
$Datum = " -- Date: " + $d.ToString("dd-MM-yyyy")
$Tijd = " -- Time: " + $d.ToString("HH:mm:ss")
$Scriptmsg = "*** ENDED ***** " + $mypath + " -- PowerShell script " + $MyName + $Version + $Datum + $Tijd +$Node
Report "N" $scriptmsg $StatusObj $deffile $StatusObj $Tempfile
Report "N" " " $StatusObj $deffile $StatusObj $Tempfile
Write-Host $scriptmsg
Exit $Returncode
}
}