Hi all, need fast answers :(
How can i do auto-logon to other computer in the same network that have user password - programmatically ?
please help, Noob
Printable View
Hi all, need fast answers :(
How can i do auto-logon to other computer in the same network that have user password - programmatically ?
please help, Noob
Anyone please ...
I mean how can i bypass the logon screen if i want to connect to other computer in my network ??
what do you want to do when its connected? you could connect a winsock to the computer name if there is an app listening
@the182guy
I'm not talking about winsock, the program that using winsock has been reject by my administrator, he don't want it to be that way.
He just want to make it more simple, just with network path...he think it will be more faster than using winsocks.
And the problem is when i put this network path to access the computer
Logon screen appears, like usual and i need somehow to bypass that screen and login automatically to that computer ...Quote:
\\computer_name1\c$
or this is just dumb solution :blush:
or is there any solutions for this ? most use operating system is W2K and XP.
the computer client just need one button - that is [ back up ] button and the program will copy all files in local machine with specified working directories to server. That's it :blush:
i do surfing, but still have no clue
or i just do ASP then ?? :rolleyes:
so the app will basically just copy all the files to the server folder? try the FileCopy function im not sure if it can copy to remote folder but I think so. like this
you will need to have permissions to access the folder on the server thoughVB Code:
FileCopy "c:\test.txt", "\\server1\backup\test.txt"
if it allows you to do that you can make a loop so it will copy all files in your folder to the server folder