Transwiz Transfer_All script stops at 25
Printed From: ForensiT
Category: ForensiT Support
Forum Name: Move Computer
Forum Description: User Profile Transfer Wizard questions, suggestions, comments and bug reports
URL: https://forum.ForensiT.com/forum_posts.asp?TID=1735
Printed Date: 27 Mar 2026 at 2:12am Software Version: Web Wiz Forums 12.03 - http://www.webwizforums.com
Topic: Transwiz Transfer_All script stops at 25
Posted By: cio-john
Subject: Transwiz Transfer_All script stops at 25
Date Posted: 18 May 2019 at 10:19pm
I have about 100 users I am trying to transfer and I get a few strange things happening.
- Not sure how it is picking what profiles to start with but it seems a bit random
- I added several to the exclusion list and it included them anyway
- It is is only migrating 25 then says backup complete, I thought I had used an eval license but I went back and downloaded my purchased one again (which by the way randomly generates a new key each download)
They are part of a domain. I tried removing the domain name and leaving strDomain="" but it just error-ed.
Any advice would be appreciated.
Thank you.
|
Replies:
Posted By: cio-john
Date Posted: 18 May 2019 at 10:21pm
|
By the way my migration is tonight/tomorrow morning.
|
Posted By: cio-john
Date Posted: 18 May 2019 at 11:07pm
I ran the script in debug mode which was kinda helpful.
25 isn't a machine number, the script crashes. Error is listed.
Also included is a screenshot of the random order. If I know what profile was next what it was about to try to copy I could exclude that profile but it isn't going in alpha order.
See Screenshots here: https://imgur.com/a/mf5v6Be
|
Posted By: Support
Date Posted: 19 May 2019 at 10:27am
There is nothing random here. The script is enumerating the profiles as they are listed in the registry.
The profiles are listed by SID. The script is stopping because one of the SID subkeys does not resolve to a valid SID. To fix it, you just have to add the line "On Error Resume Next" to the script:
For Each strSubkey In arrSubKeys
On Error Resume Next
Set objWmiSID = objWmiService.Get("Win32_SID.SID='" & strSubkey & "'")
|
|