XPero's utilities Miscellaneous tools (no XPize related)
#52
Posted 14 March 2007 - 02:24 AM
#54
Posted 11 April 2007 - 06:37 AM
#55
Posted 11 April 2007 - 09:42 AM
Kiki Burgh, on Apr 11 2007, 02:37 PM, said:
It is a standalone executable, so you shouldnt have problems
#56
Posted 05 May 2007 - 12:02 PM
#57
Posted 05 May 2007 - 12:52 PM
#58
Posted 17 June 2007 - 09:56 AM
XPero, on May 5 2007, 08:02 PM, said:
your tool doesn't work on NON English versions of Vista.
you used the following code:
process.StartInfo.FileName = "icacls"; process.StartInfo.Arguments = file + " /grant Administrators:(F)";
Administrators is the name on english Vistas, but on non english version the identification of the group Administrators is translated. For Example Administratoren in german. So you code doesn't work. You have to change the string according to the installed langauge.
#59
Posted 17 June 2007 - 02:48 PM
EDIT:
Please try attached version and tell me if it is fixed. Thanks
Attached File(s)
-
TakeControl.zip (167.33K)
Number of downloads: 68
#60
Posted 18 June 2007 - 12:01 AM
#61
Posted 19 June 2007 - 05:21 PM
this version grants access to the user Administrator, but not the group Administratoren (Administrators).
André
#62
Posted 20 June 2007 - 08:37 AM
#63
Posted 20 June 2007 - 03:19 PM
#67
Posted 26 June 2007 - 01:04 AM
#68
Posted 26 June 2007 - 02:50 PM
#70
Posted 27 June 2007 - 09:33 AM
string getName(WellKnownSidType wksid)
{
SecurityIdentifier sid = new SecurityIdentifier(wksid, null);
NTAccount account = (NTAccount)sid.Translate(typeof(NTAccount));
return account.Value;
}
getName(WellKnownSidType.BuiltinAdministratorsSid)
This post has been edited by MagicAndre1981: 27 June 2007 - 11:49 PM



Help

Back to top










