Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I'm sure I'm just doing something wrong, any help would be greatly appreciated.
Thanks for making a tool for this!
If you're interested in taking a look at the save (if not s'all good): https://www.dropbox.com/s/lxfavd0z9jhso0k/saveFile2.sav?dl=0
could you send me the output given to you when you run the script, and i'll see if i can work out what was wrong :)
Original:
https://www.dropbox.com/s/pdqxsfhl1ggrnwx/saveFile3-orig.sav?dl=0
After running script:
https://www.dropbox.com/s/do0d8dgx8m1dnr6/saveFile3-script.sav?dl=0
Seriously, thanks for taking the time to help. :D
Google led me here: http://stackoverflow.com/questions/4037939/powershell-says-execution-of-scripts-is-disabled-on-this-system
Short version:
Press windows key
Search for "Powershell"
Right click Windows Powershell, run as admin
Enter "Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser" (without quotes)
You should be good to run the script martin posted at that point. I'd recommend resetting the powershell setting to require a signature after you're done. (run "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser" in powershell).
Hope this helps.
Now i hope the script works too :)
$diff = Compare-Object -ReferenceObject $locationGUID -DifferenceObject $chunk
with:
$diff = @(Compare-Object -ReferenceObject $locationGUID -DifferenceObject $chunk)
and it should work