2
votes
2answers
186 views

How to get security token of a windows service's LogOn user?

I need to impersonate the LogOn user account of a particular windows service. I have been able to get the username using WMI (sadly the LogOn user identity doesn't seem to be exposed using any of the ...
1
vote
1answer
132 views

windows batch Iterate tokens in a for loop

How to iterate through tokens in a for loop in Windows batch scripting? I'm writing a script that allows the user to search a file and print out the parent directory for that file. So far I can get ...
0
votes
2answers
57 views

Getting Token Information

I have the following program written in C: #include "stdafx.h" #include <Windows.h> void main() { char buffer[1000]; int size = sizeof(buffer); PDWORD required_size; ...
1
vote
2answers
776 views

Windows Batch loop though variable with dynamic token count

In my Windows batch file I have some variable with a various number of strings. For exapmle: set string="-start" "-end someOption" I count the numbers of a String the following way: Set count=0 ...
0
votes
1answer
150 views

Set ACL for USB Device (Token) at Windows

How can I set ACL for USB device (token)? Need to set access control for USB-token at 1 PC (for example): Enable: - 1-st user can use the 1-st token; - 2-nd user can use the 2-nd token; Disable: - ...
2
votes
2answers
2k views

Device Token for Push Notification

I am implementing a push notification service. I would need to create a database to store all the device tokens from the 4 mobile platforms. I want to organize them accordingly to their ...
6
votes
1answer
13k views

Batch file FOR /f tokens

Can anyone please explain exactly how the following code works, line by line. I'm really lost. I've been trying to learn how to use the FOR command but I don't understand this. @echo off for /f ...
1
vote
1answer
389 views

how do i convert restricted user token to unrestricted one?

I have a user token duplicated from a restricted UAC launched process and I want to remove the deny group SIDs from it. How do I do that? If I call SetTokenInformation with the TOKEN_GROUPS ...
0
votes
2answers
347 views

Is there a way to set a token for another process?

There is SetThreadToken() function but no such function as "SetProcessToken()". Is there a way to set a token for another process? How to write "SetProcessToken()"?
1
vote
0answers
693 views

CreateProcessWithUser fails to impersonate user with errors 87, 1349

On a windows 2003 server, running from a service, createprocessasuser fails with error 87, and an error from WLEXECSERVER that says fails to impersonate user. On a windows 2003 server 64 bit, running ...
3
votes
2answers
2k views

What is the difference: LoadUserProfile -vs- RegOpenCurrentUser

These two APIs are very similar but it is unclear what the differences are and when each should be used (Except that LoadUserProfile is specified for use with CreateProcessAsUser which I am not using. ...
0
votes
1answer
507 views

Impersonating users to access hives - various methods, what are the practical issues?

I am designing a Service to run under LocalSystem account on Win2000, XP and Vista. It will need access to users registry hives, sometimes for extended periods of time, both when the users are ...