Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to access win32api function LogonUser
Message
From
28/12/1998 06:45:34
 
 
To
28/12/1998 05:28:53
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00170686
Message ID:
00170695
Views:
39
>I am trying to logon programmaly to an other domain
>I am using to winapi32 function
>
>why is this not working ?
>
>Kind regards
>
>
>Jan Dorresteijn.
>
>DECLARE INTEGER LogonUser ;
> IN WIN32API ;
> string @aUser,string @cdomain, string @apassw, integer @aType1,integer @atype2,integer atype3
>

You're passing some of the DWORD parameters incorrectly; instead, try:

DECLARE INTEGER LogonUser IN WIN32API;
STRING lpszUserName, ;
STRING lpszDomain, ;
STRING lpszPassword, ;
INTEGER dwLogonType, ;
INTEGER dwLogonProvider, ;
INTEGER @ phToken

cUser = 'user1'
cDomain = 'MyDomain'
cPasswd = 'xyzzy'
nLogonType = 2 && LOGON32_LOGON_INTERACTIVE (see WINBASE.H)
nProvider = 0 && LOGON32_PROVIDER_DEFAULT (see WINBASE.H)
nToken = 0
nResult = LogonUser(cUser, cDomain, cPasswd, nLogonType, nProvider, @nToken)

Don't forget to CloseHandle() the phToken - the memory used by the object
remains active until the handle is closed explicitly by the owner, even
if the variable holding the value goes out of scope.


>handle = 0
>h_user = "user1"
>h_serv = "domain"
>h_a1 = 1
>h_a2 = 0
>h_pass = "passw1"
>a= LogonUser(@h_user,@h_serv,@h_pass,@h_a1,@h_a2,@Handle)
>? a && returns 0
>
>DECLARE INTEGER GetLastError IN WIN32API
>lnError = GetLastError()
>wait window STR(lnError) && Returns 127
EMail: EdR@edrauh.com
"See, the sun is going down..."
"No, the horizon is moving up!"
- Firesign Theater


NT and Win2K FAQ .. cWashington WSH/ADSI/WMI site
MS WSH site ........... WSH FAQ Site
Wrox Press .............. Win32 Scripting Journal
eSolutions Services, LLC

The Surgeon General has determined that prolonged exposure to the Windows Script Host may be addictive to laboratory mice and codemonkeys
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform