This repository was archived by the owner on Feb 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopyuserfiles.py
584 lines (484 loc) · 20.4 KB
/
copyuserfiles.py
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2019 Brennan Goewert
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# -----------------------------------------------------------------------------
import os
import sys
import shutil
import argparse
import logging
import winreg
import ctypes
from fnmatch import fnmatch
import __main__
__version__ = '2.1.1'
_stop_flag = False
# Registry Key for User Folders
regKey_UserFolderLocations = ('Software\\Microsoft\\Windows\\CurrentVersion' +
'\\Explorer\\User Shell Folders')
# Path for log file
log_path = os.path.join(os.path.dirname(os.path.realpath(__main__.__file__)),
'{}.log'.format(__name__))
# Logging config
logging.basicConfig(level=logging.INFO,
filename=log_path,
filemode='w',
format=('%(asctime)s - %(levelname)s - ' +
'%(funcName)s - %(message)s'),
datefmt='%d-%m-%y %H:%M:%S')
logging.getLogger().addHandler(logging.StreamHandler())
# Command-line arguments
argp = argparse.ArgumentParser(description='Copies all the important ' +
'files and folders from the user profile.')
# Source
argp.add_argument('-s', '--source', type=str,
help=('Set the source directory. ' +
'More specifically the user profile location'),
action='store',
required=False)
# Destination
argp.add_argument('-d', '--destination', type=str,
help='Set the destination directory.',
action='store',
required=False)
# Username
argp.add_argument('-u', '--username', type=str,
help='Set the user\'s name of the ' +
'profile folder to copy from.',
action='store',
required=False)
# Set Documents Target Location
argp.add_argument('-D', '--documents', type=str,
help='Set the remote user\'s documents folder ' +
'target location for a new machine.',
action='store',
required=False)
# Set remote hostname
argp.add_argument('-H', '--hostname', type=str,
help='Set the remote hostname. ' +
'Do not set this to use local machine.',
action='store',
required=False)
# Checks to see if user is administrator
def is_admin():
logging.info('Checking user privledges...')
try:
# Requests administrator permission for the python script
logging.info('Checking if user is admin...')
return ctypes.windll.shell32.IsUserAnAdmin()
except:
logging.info('User is not admin!')
return False
def getUserRegKey(key, valName, target=None):
""" Returns a user registry key value.
- key
The registry key (e.g. 'Software\\Microsoft\\Windows\\Current\
Version\\Explorer\\User Shell Folders')
- valName
The registry value name
- target
The remote target hostname. If None, use local host.
"""
try:
# Connect to the registry
reg = winreg.ConnectRegistry(target, winreg.HKEY_CURRENT_USER)
# Open key to read
regKey = winreg.OpenKey(reg, key, 0, winreg.KEY_READ)
except WindowsError:
logging.exception(
'User registry key does not exist: {}'.format(key))
return None
# Get key value and type
keyValue, keyType = winreg.QueryValueEx(regKey, valName)
# Close opened key
winreg.CloseKey(regKey)
return keyValue
def setUserRegKey(key, valName, val, keyType=winreg.REG_SZ, target=None):
""" Sets a user registry key/value pair.
- key
The registry key (e.g. 'Software\\Microsoft\\Windows\\Current\
Version\\Explorer\\User Shell Folders')
- valName
The registry value name
- val
The new value
- keyType
Defaults to REG_SZ
- target
The remote target hostname. If None, use local host.
"""
try:
# Connect to the registry
reg = winreg.ConnectRegistry(target, winreg.HKEY_CURRENT_USER)
# Open key to read
regKey = winreg.OpenKey(reg, key, 0, winreg.KEY_ALL_ACCESS)
except WindowsError:
logging.exception(
'User registry Key does not exist: {}'.format(key))
try:
# Get key current value and type
keyValue, keyType = winreg.QueryValueEx(regKey, valName)
except WindowsError:
logging.info('User registry key does not exist: {}'.format(
key + os.sep + valName))
try:
# Set new key value and get new key value
winreg.SetValueEx(regKey, valName, 0, keyType, val)
keyNewValue = winreg.QueryValueEx(regKey, valName)[0]
except WindowsError:
logging.exception(
'An error occurred while ' +
'setting registry key/value: {}'.format(key))
# Close opened key
winreg.CloseKey(regKey)
logging.info('User registry key set: {}'.format(
key + os.sep + valName + ' = ' + keyNewValue))
return keyNewValue
def setMyDocumentsLocation(newLocation, hostname=None):
""" Set the location for My Documents.
- newLocation
The actual new target location to set the Documents folder to.
- hostname
The computer name where to set the new documents target location.
"""
# Get the current location for My Documents
curVal_myDocuments = getUserRegKey(regKey_UserFolderLocations,
'Personal',
hostname)
""" Set the new locations for My Documents
'This PC' Documents GUID Key Name = {F42EE2D3-909F-4907-8871-4C22FC0BF756}
Quick Access Documents Key Name = Personal
"""
newVal_personal = setUserRegKey(regKey_UserFolderLocations,
'Personal',
newLocation,
target=hostname)
newVal_documents = setUserRegKey(regKey_UserFolderLocations,
'{F42EE2D3-909F-4907-8871-4C22FC0BF756}',
newLocation,
target=hostname)
# TODO(Brennan): Log off then back in to PC after setting the new location
def getUserName(tries=0):
"""
Returns the username from command line argument or user input.
Fails after 5 attempts of retriving a valid user.
"""
logging.info('Attempting to retrieve username...')
username = None
# Get any command line arguments
args = argp.parse_known_args(sys.argv[1:])
try:
# 5 total attempts before quitting
if tries < 5:
# If username is set as an argument
if args[0].username is not None:
username = args[0].username
homepath = os.path.expanduser('~')
if not os.path.exists(homepath):
print('That was not a folder...')
print(homepath)
print('Run the script again to try another user name...')
logging.error('User folder not ' +
'found! - {}'.format(homepath))
argparse.ArgumentParser.exit()
# If it is not set as an argument, ask for user input
else:
username = input('Name of user folder: ')
homepath = os.path.expanduser('~')
if not os.path.exists(homepath):
print('That was not a folder...')
print(homepath)
logging.error('User folder not ' +
'found! - {}'.format(homepath))
getUserName(tries + 1)
# Failure to find folder after 5 attempts
else:
print('YOU HAVE TRIED THIS TOO MANY TIMES!!! (ノಠ益ಠ)ノ彡┻━┻')
logging.warning('Too many attempts to find ' +
'a user folder.')
quit()
except:
logging.exception('Something really bad happened trying to get ' +
'a folder name, check stacktrace to see the ' +
'logs and submit a bug report')
# Return the username if folder was found
logging.info('User profile selected: %s' % username)
return username
def getUserSrcDir(tries=0):
""" Returns the user source directory """
userDir = None
args = argp.parse_known_args(sys.argv[1:])
try:
if tries < 5:
if args[0].source is not None:
if args[0].source is '':
userDir = args[0].source
else:
userDir = os.path.abspath(args[0].source)
if os.path.isfile(userDir):
print('That was not a folder...')
argparse.ArgumentParser.exit()
else:
userDir = os.path.abspath(input('User source folder to copy' +
' user files/folders from: '))
if os.path.isfile(userDir):
print('That was not a folder...')
print(userDir)
getUserSrcDir(tries+1)
else:
print('YOU HAVE ALREADY TRIED THIS FIVE TIMES!!! (ノಠ益ಠ)ノ彡┻━┻')
logging.warning('Too many attempts to select ' +
'a user destination directory.')
quit()
except:
logging.exception('Something really bad happened trying to get ' +
'a folder name, check stacktrace to see the ' +
'logs and submit a bug report')
logging.info('User source directory selected: %s' % userDir)
return userDir
def getUserDestDir(tries=0):
""" Returns the user destination directory """
destDir = None
args = argp.parse_known_args(sys.argv[1:])
try:
# 5 total attempts before quitting
if tries < 5:
# Source Directory is declared as an argument
if args[0].destination is not None:
if args[0].destination is '':
destDir = args[0].destination
else:
destDir = os.path.abspath(args[0].destination)
if os.path.isfile(destDir):
logging.warning('That was not a folder...')
argparse.ArgumentParser.exit()
# Source Directory is not declared as an argument
else:
destDir = os.path.abspath(input('Destination folder to copy' +
' user files/folders to: '))
# If destination is a file
if os.path.isfile(destDir):
logging.warning('That was not a folder... \n Folder:' +
destDir)
getUserDestDir(tries + 1)
# Failure to find file after 5 attempts
else:
logging.warning('Too many attempts to find a user folder.')
quit()
# Error handling
except:
logging.exception('Something really bad happened trying to get ' +
'a folder name, check stacktrace to see the ' +
'logs and submit a bug report')
logging.info('User destination directory selected: %s' % destDir)
return destDir
def getDocsLoc(tries=0):
""" Get the new Documents location. """
args = argp.parse_known_args(sys.argv[1:])
docLoc = ''
if tries < 5:
# Documents Directory is declared as an argument
if args[0].documents is not None:
if args[0].documents is '':
docLoc = args[0].documents
else:
docLoc = os.path.abspath(args[0].documents)
if os.path.isfile(docLoc):
logging.warning('That was not a folder... \n Folder:' +
docLoc)
argparse.ArgumentParser.exit()
# Documents Directory is not declared as an argument
else:
docLoc = input('Documents target location ' +
'(leave blank to skip): ')
# If destination is a file
if os.path.isfile(docLoc) and docLoc != '':
logging.warning('That was not a folder... \n Folder:' +
docLoc)
logging.info('Trying again...')
getDocsLoc(tries + 1)
logging.info('Target Location: %s' % docLoc)
return docLoc
def getHostname():
""" Get the remote hostname. Leave blank to use local machine."""
args = argp.parse_known_args(sys.argv[1:])
# Documents Directory is declared as an argument
if args[0].hostname is not None:
hostname = args[0].hostname
# Documents Directory is not declared as an argument
else:
hostname = input('Hostname: ')
logging.info('Target Hostname: {}'.format(hostname))
return hostname
def setDocsLoc(hostname, documents_location, tries=0):
""" Sets the new Documents target location. """
try:
# 5 total attempts before quitting
if tries < 5:
# Change the documents folder target location to
# whatever was specified
if documents_location != '':
setMyDocumentsLocation(documents_location, hostname)
logging.info('Documents target location: {}'.format(
documents_location))
return documents_location
# Failure to find file after 5 attempts
else:
logging.exception('Unable to find folder.')
quit()
# Error handling
except:
logging.exception('Something really bad happened trying to get ' +
'a folder name, check stacktrace to see the ' +
'logs and submit a bug report')
def _findfile(pattern, path):
""" Finds a file in a folder based on a pattern search.
(e.g. '*.pst')
"""
result = []
# Finding all files in the specified path to search
for root, dirs, files in os.walk(path):
for name in files:
if fnmatch(name, pattern):
result.append(os.path.join(root, name))
logging.info('Found %s' % result)
return result
def _copyall(src, dst):
""" Copies all sub folders and files from the source. """
try:
for item in os.listdir(src):
s = os.path.join(src, item)
d = os.path.join(dst, item)
if os.path.isdir(s):
logging.info('%s is a directory' % s)
if os.path.isdir(d):
logging.info('%s exists in destination! Deleting!' % d)
shutil.rmtree(d)
logging.info('Deleted %s' % d)
logging.info('Copying %s' % d)
shutil.copytree(s, d)
logging.info('Copied %s' % d)
else:
logging.info('Copying %s to %s' % (s, d))
shutil.copytree(s, d)
logging.info('Copied %s' % d)
else:
logging.info('%s is not a directory' % s)
if not os.path.isdir(os.path.dirname(d)):
logging.info('Copying %s tp %s' % (s, d))
shutil.copytree(os.path.dirname(s), os.path.dirname(d))
else:
logging.info('Copying %s tp %s' % (s, d))
shutil.copy(s, d)
# Any error during the copying process
except Exception as err:
logging.exception('Exception occurred while trying to copy')
def stop():
global _stop_flag
_stop_flag = True
def copyuserfiles(dest, src=None, username=None, hostname=None):
""" Copies the files from the profile folder of the defined username to
the destination folder. All files and subfolders will be placed in a
folder with the same name as the username.
- username
The name of the user profile folder
- dest
The destination directory to copy the user files to.
"""
global _stop_flag
f_cnt = 0
# Folders to copy over
folders = [
'Documents',
'Desktop',
'Favorites',
'Pictures',
'Videos',
'AppData\\Local\\Microsoft\\Outlook',
'AppData\\Roaming\\Microsoft\\Outlook',
'AppData\\Roaming\\Microsoft\\Outlook\\RoamCache',
'AppData\\Roaming\\Microsoft\\Signatures',
'AppData\\Local\\Mozilla\\Firefox',
'AppData\\Roaming\\Mozilla\\Firefox',
'AppData\\Local\\Google\\Chrome'
]
# Change path for either remote or local
while _stop_flag is False:
for folder in folders:
if hostname and not src:
folders[folders.index(folder)] = (
'\\\\{}\\C$\\Users\\{}\\{}'.format(
hostname, username, folder))
elif src and not hostname:
if (os.path.exists(src)):
# If the src is actually a folder for a user
username = os.path.basename(src)
folders[folders.index(folder)] = (
'{}\\{}'.format(
src, folder))
else:
logging.error('The source given was not for ' +
'a valid folder of a user.')
sys.exit(1)
else:
folders[folders.index(folder)] = (
'C:\\Users\\{}\\{}'.format(username, folder))
# Copy all paths in the folders array
for folder in folders:
f_cnt = f_cnt + 1
path = os.path.abspath(folder)
dest = os.path.abspath(dest)
newDst = path.replace(os.sep.join(path.split(os.sep)[:3]),
dest + os.sep + '%s' % username)
# Copy Outlook folders in %APPDATA%/Local/Microsoft/Outlook
if 'Outlook' in path and 'Local' in path:
for f in _findfile('*.pst', path):
_copyall(f, os.path.join(newDst, f))
# Copy Outlook folders in %APPDATA%/Roaming/Microsoft/Outlook
elif ('Outlook' in path and
'RoamCache' not in path and
'Roaming' in path):
for f in _findfile('*.nk2', path):
_copyall(f, os.path.join(newDst, f))
else:
_copyall(path, newDst)
if len(folders) == f_cnt:
break
if __name__ == '__main__':
try:
if is_admin():
logging.info('User is admin!')
logging.info('* This script does not copy anything ' +
'from the downloads folder. *')
logging.info('Arguments: {}'.format(
argp.parse_known_args(sys.argv[1:])))
host = getHostname()
setDocsLoc(hostname=host,
documents_location=getDocsLoc())
copyuserfiles(username=getUserName(),
dest=getUserDestDir(),
hostname=host)
else:
logging.error('User is not admin! Prompting UAC elevation...')
ctypes.windll.shell32.ShellExecuteW(None, 'runas', sys.executable,
__file__, None, 1)
except (KeyboardInterrupt,
SystemError,
SystemExit) as err:
logging.error("Stopped the script!", exc_info=True)
quit()