Click here to Skip to main content
15,910,277 members
Home / Discussions / C#
   

C#

 
GeneralRe: .NET solution for Accouting Pin
Ravi Bhavnani19-Aug-14 8:37
professionalRavi Bhavnani19-Aug-14 8:37 
GeneralRe: .NET solution for Accouting Pin
gurusarma19-Aug-14 23:35
gurusarma19-Aug-14 23:35 
Question[server 2012] How can I have my application start up immediately (after the desktop has loaded) upon logon, instead of being delayed by the OS? Pin
turbosupramk35-May-14 8:57
turbosupramk35-May-14 8:57 
AnswerRe: [server 2012] How can I have my application start up immediately (after the desktop has loaded) upon logon, instead of being delayed by the OS? Pin
Dave Kreskowiak5-May-14 9:34
mveDave Kreskowiak5-May-14 9:34 
GeneralRe: [server 2012] How can I have my application start up immediately (after the desktop has loaded) upon logon, instead of being delayed by the OS? Pin
turbosupramk36-May-14 3:12
turbosupramk36-May-14 3:12 
GeneralRe: [server 2012] How can I have my application start up immediately (after the desktop has loaded) upon logon, instead of being delayed by the OS? Pin
Dave Kreskowiak6-May-14 4:08
mveDave Kreskowiak6-May-14 4:08 
AnswerRe: [server 2012] How can I have my application start up immediately (after the desktop has loaded) upon logon, instead of being delayed by the OS? Pin
jschell5-May-14 10:57
jschell5-May-14 10:57 
AnswerRe: [server 2012] How can I have my application start up immediately (after the desktop has loaded) upon logon, instead of being delayed by the OS? Pin
turbosupramk315-May-14 3:15
turbosupramk315-May-14 3:15 
Here is the answer, I used

Quote:
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\UserInit. This points to the program C:\WINDOWS\system32\userinit.exe and the entry ends with a comma. Other programs can be started from this key by appending them and separating them with a comma.


to get my task bar to launch immediately. With 2012 it appears that Microsoft is staggering the way this order listed below iterated through, instead of cycling through it as fast as the processor will allow, as a performance enhancement.

http://social.technet.microsoft.com/forums/windows/en-US/99ea6078-00b2-472a-9a6f-888d0a992964/customize-the-winlogon-process[^]


Quote:
If you mean, which keys can be used to start application programs, this is the startup sequence of the major registry keys, starting immediately after bootmgr has been read and ending with the program shortcut entries in the two Startup folders.

1. HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\BootExecute. This can include instructions to schedule the running of chkdsk but not user programs.
2. Services start next, followed by the RunServicesOnce and RunServices registry keys (if present)
3. User then logs on to the system
4. HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\UserInit. This points to the program C:\WINDOWS\system32\userinit.exe and the entry ends with a comma. Other programs can be started from this key by appending them and separating them with a comma.
5. HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell. This should contain just one entry, explorer.exe.
6. Program entries in these 2 registry keys for ALL USERS start next:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run and \RunOnce
7. Program entries in these 2 registry keys for CURRENT USER start next:
HKCU\Software\Microsoft\Windows\CurrentVersion\Run and \RunOnce
8. Programs in the Startup Folders of All Users and Current User are started last of all.

Important programs like antivirus and firewall start early in the sequence as Services. The icons that appear in the Notification Area (bottom right of the screen) are just their user interfaces, i.e. options and preferences.

The additional location for 32-bit software in a 64-bit computer is HKLM\SOFTWARE\Wow6432Node and HKCU\Software\Wow6432Node.

Questiondynamic dropdown select list Pin
Hamza ain uddin khan4-May-14 12:32
professionalHamza ain uddin khan4-May-14 12:32 
AnswerRe: dynamic dropdown select list Pin
Wes Aday4-May-14 14:23
professionalWes Aday4-May-14 14:23 
GeneralRe: dynamic dropdown select list Pin
Hamza ain uddin khan6-May-14 12:39
professionalHamza ain uddin khan6-May-14 12:39 
AnswerRe: dynamic dropdown select list Pin
Deepanshu Goel7-May-14 19:56
professionalDeepanshu Goel7-May-14 19:56 
Questionbuilding a program to download images from the web Pin
thewiz914-May-14 7:32
thewiz914-May-14 7:32 
AnswerRe: building a program to download images from the web Pin
Wes Aday4-May-14 8:50
professionalWes Aday4-May-14 8:50 
QuestionProgress bar start with button click and stop at text box color change event. Pin
Member 105796734-May-14 0:59
Member 105796734-May-14 0:59 
AnswerRe: Progress bar start with button click and stop at text box color change event. Pin
Dave Kreskowiak5-May-14 3:32
mveDave Kreskowiak5-May-14 3:32 
AnswerRe: Progress bar start with button click and stop at text box color change event. Pin
Eddy Vluggen6-May-14 8:07
professionalEddy Vluggen6-May-14 8:07 
QuestionHow to display a search and select form in place of a text box in c# or VB.net. The search form should look like a dropdown box to the user Pin
prasanthgpks23-May-14 15:24
prasanthgpks23-May-14 15:24 
SuggestionRe: How to display a search and select form in place of a text box in c# or VB.net. The search form should look like a dropdown box to the user Pin
Richard MacCutchan3-May-14 22:06
mveRichard MacCutchan3-May-14 22:06 
QuestionUpdate SQL Database in C# Pin
Lubomír Baloga2-May-14 23:12
Lubomír Baloga2-May-14 23:12 
AnswerRe: Update SQL Database in C# Pin
Richard MacCutchan3-May-14 0:30
mveRichard MacCutchan3-May-14 0:30 
GeneralRe: Update SQL Database in C# Pin
Lubomír Baloga3-May-14 4:26
Lubomír Baloga3-May-14 4:26 
QuestionRe: Update SQL Database in C# Pin
Richard MacCutchan3-May-14 4:46
mveRichard MacCutchan3-May-14 4:46 
AnswerRe: Update SQL Database in C# Pin
Lubomír Baloga3-May-14 6:00
Lubomír Baloga3-May-14 6:00 
GeneralRe: Update SQL Database in C# Pin
Richard MacCutchan3-May-14 6:34
mveRichard MacCutchan3-May-14 6:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.