-
I'll start off explaining the scenario. i'm using a get-permissions > XML in another script. I'm then using a if to read which permissions to set. $delegation = <array of all accounts nestled in xml> of the 7 trustees i have nestled the first two are gpocustom, and the last two are...
-
Is there a way to make import/export-csv work with special characters? Try this: cd $home md öttö dir | select-object Name | export-csv test.csv import-csv test.csv All special characters appear as "?". -Tobias
-
Recently, I stumbled over this line: for ($x=1; $x -lt 10; $x += 0.1) { $x } The result does seem to be a rounding bug. Any suggestions on how to correct this?