DO u know this password can be bypassed... I've bypassed this password so many times... Thats why i dont want to use it..
ayandelhi
Posts
-
C program to start before windows boot -
C program to start before windows bootThanks... Will surely take care of it... Thanks for this scenario...
-
C program to start before windows bootThanks for that... it'll surely help...
-
C program to start before windows booti want to use my password program before win os prompts for password...
-
C program to start before windows bootI guess boot manager is responsible for loading the OS files... After the user has selected the preferred OS to boot, My program is executed.. If there is list of files that the OS loads into memory before prompting the user for password(Windows' original password), I want my program to be included into this list as the second last program to be executed.. Can i do so???
-
C program to start before windows bootHi!! I want to write a password program that asks for a password before win os boots. even before windows prompts for password. and then if password is correct it boots windows.. if wrong password is entered it again asks for password. I dont wanna use CMOS password.. After the user is asked to select the OS from boot manager, the password should be asked for n then is correct password is entered, the os boots otherwise it asks for password again.
-
C# method to restart the applicationok... my bad...
-
Windows program responding to win + dThanks... But i dint get anywhere... Thanks anyway...
-
C# method to restart the applicationThis one wont work in console application... this will open a new instance of the application but cant close the current instance...
-
Windows program responding to win + dtell me where shud i post this question... One more thing... Windows Explorer(explorer.exe) can read all the keystrokes?? How is this whole process is working??? Can u plz explain... I'm just curious...
-
Windows program responding to win + dHi!! I dint know where to post it... But i want to know which Application of Windows responds to Win +D (used to view Desktop) and other such combinations?? Ayan
-
C# method to restart the applicationTo kill the application i've used Process.GetCurrentProcess().Kill(); To restart { Process.Start(Application.ExecutablePath, "/restart" + Process.GetCurrentProcess().Id); Process.GetCurrentProcess().Kill(); } Thanks for the help... If u can find anyother more appropriate way plz let me know... Ayan
-
C# method to restart the applicationClose() cant be used... m using Visual Studio 2010 n its not allowing... I mean its giving error... And Application.Restart() is working fine but it aint closing the previous instance... How shud i close the console window forcibly.. Should i use Process.Kill()??
-
C# method to restart the applicationOk its working.... Thanks for this... But will it work on a Console Application too... I cudnt find this Application... How shud i integrate it in my code?? Its not exiting but ya its opening another instance... How shud i get it working...
-
C# method to restart the applicationHow will it work can u plz explain.. i mean after this Application.Exit(); how will Process.Start(...); will be executed???
-
C# method to restart the applicationHi!! I wanna code a method that can restart the application without any user involvment.. I mean when an error is encountered, the method can be used to restart the application.. Plz help me out...
-
C# program to share screen using RDPCOMAPILIB.dllHi!! i'm getting this error when i try to share screen from my notebook connected to the router using wifi n my pc by ethernet "System.ArgumentException: Value does not fall within the expected range. at RDPCOMAPILib.IRDPSRAPIViewer.Connect(String bstrConnectionString, String bstrName, String bstrPassword) at AxRDPCOMAPILib.AxRDPViewer.Connect(String bstrConnectionString, String bstrName, String bstrPassword)" this error comes each time i try to connect it axRDPviewer.connect(Connstring,"user1", ""); I cant get this corrected... It works perfect when i do it on my pc but aint working when try to share my notebook screen... the Connstring is being sent by Tcp message(Send and receive)... Can u tell me where is the source of the problem... How can i take care of this???
-
C# window app to listen multiple port simultaneously..actually... m running both client n server on my pc.. n m typin on client and it shud be visible as it is.. m sending the text to a file too and to server too.. on file i've complete text but m not getting on the server side.. i want a live feed of wat is the user typing on client not the file.. help me out..
-
C# window app to listen multiple port simultaneously..I'm lost in it.. i cant see thru it.. when i type a msg in msg text box i shud start a thread which sends it to client n then waits until a msg is received from client. Right.. or something else.. One more thing... how much time does it take a msg to get delivered from client to server on a lan of max 10 pcs.. i'm asking this coz i want active feed from my clients.. wheneva they type anything on their app it shud be displayed on my window...
-
C# window app to listen multiple port simultaneously..Ans 1. TCP/IP Ports... Ans 2. How can i use Threading in GUI app??? i've textbox1 and textbox2. now i need to listen port port1 and port2 and direct the received msgs to their respective textboxes. Ans 3. thanks for that.. i've studied it already.. that cross thread funcs..