How to change the settings in "msconfig" without having to restart the computer?

* Original title: close msconfig

There is a tech changed a setting that makes close msconfig after changes without having to restart.  I am now on a new pc. Could you provide me the setting that will do it?  I think that many would like to know that, too.  Thank you.

Thanks for the suggestion, but I found the correct procedure through a Google search:

http://windowsitpro.com/Windows/stop-msconfigexes-post-boot-confirmation-popping. This Question can not be closed.

Tags: Windows

Similar Questions

  • How to change the computer information

    Hello

    I'm looking how to change, via the terminal, the 4 fields named info 1 and 2 info, info 3 info 4 in the "system preferences/sharing/remote management / computer settings button.

    These fields are displayed in the ARD and ARD reports and are very useful to sort the computers when you have a large number of them.

    PS: Since the upgrade to El Capitan when I try to change these settings through ADR, ARD crashes whenever I try to send the command to make this change on a remote computer.

    Probably more useful for you, but fashioned I would answer.

    sudo defaults write /Library/Preferences/com.apple.RemoteDesktop \Text1 "TextForSection1".

    sudo defaults write /Library/Preferences/com.apple.RemoteDesktop \Text2 "TextForSection2".

    Configured to run as root

  • How to change the computer name of existing desktop computers linked clone pool?

    Hello

    I'm curious about something that has developed in our Organization.  New guidelines came down and we have to change the name of the computer for all of our offices to meet the new criteria.

    I have many of our users is on the offices of Linked-Clone (automated pool, dedicated, assignment see 5.1) which will have their names have been changed.  I use a 'model' for the name of the computer.

    I tried this before by simply change the settings of the pool, and then recompose the pool.  Recompose worked well, but NONE of the virtual machine names have been changed.  All machines, recomposed just fine, but keep the old name of the computer (non-compliant).

    How can I change the name of the computer of my clone in an existing pool offices?  Maybe I have something wrong.  I'm doing it instead of having to create a new pool and move the persistent disks.  I would like to change the name in the settings of the pool and recompose, but it did not work.

    Scenario:
    See 5.1

    Automated cloning related pool

    Assignment of dedicated (persistent disks)

    Thanks in advance

    It is not possible to change the name of existing workstations by modifying the settings of the pool. There is no way to make this happen automatically and in doing so manually would not seen happy.

    Unfortunately, for dedicated pools, you will have more work to do. If you do not use Persona you detach the persistent disks and recreate virtual machines in the pool with this disk to create a new virtual machine with a new name to be generated.

    If you use Persona you could remove all virtual machines and have Persona to extract profile data down to the virtual machine that would be entitled to the user when they connect then. This will cause all user installed programs go, but I hope that's not common if you are already using linked clones.

    I encourage to go to the next page, click on the feature request form link and publish information on what you're trying to do:

    https://www.VMware.com/support/policies/feature.html

    Notifications about features are reviewed by VMware and if you can get enough of your friends/colleagues notice to users to ask something often a solution will grow in any kind, nature or form.

    Hope this helps.

    -Mike

  • How can I get my printer wireless reconnected without having to restart my computer?

    I have a HP Photosmart Premium printer installed as a wireless device. Often, when I closed my laptop via the mode 'sleep', I apparently lose the connection to the printer. When I try to print a document, it does not print and the printer status shows "offline".

    What could happen:

    The printer is for wireless operation. During installation, an address on the network is requested by the DHCP service on the router. This address is entered in the connection information for the printer.

    After a certain period, the computer is suspended. Will switch "standby". Close the wireless connection. Later, the computer wakes. An address is requested and issued. However, it is not the same address as that was iddued and registered in the connection information. If and when printing is started, the printing device is in standby mode because it now cannot connect through the old or new address.

    This can be corrected temporarily be remove and reinstall the printer. However, it will fail the next time that the computer is paused.

    Giving the printer address fixed, solved the problem because no address must be requested or issued by the router. There will always be the same.

    ===============

    Maybe HP has released a fix for this problem. Check on their website for a new driver package. If offered a choice, download the full package. Install it, and then try again.

    If they do not, or you get no joy, please check the print material included with the printer and that available for it on the web site. There should be instruction detailing how to set up for wireless communication. In addition, it is usually a page of instructions available on the printer itself that behaves like a web page. Find the name of the printer in network Prfnters. Mouse click and look for the network settings. For mine, it appears as a tab.

    Take a look. Assess the situation. Let us know. Someone will help more.

    Tom Ferguson

  • How to change resource settings?

    How to change resource settings?

    When I go to type definition COMPUTER resources and open the COMPUTING resource, I see the correct settings. But when I open the same IT resource in the tab resources IT, I see a missing parameter and another a duplicate.

    Can someone explain what is happening. It's really urgent... Help, please!

    Select the SVR IOM data table, locate your resource note at the bottom of the SVD_KEY. Find the SVD_KEY in the SPD table and which lists all the parameters. You can make this change required at this location.

  • How to change the angle of a gradient layer without changing anything else?

    How to change the angle of a gradient layer without changing anything else?

    When I try it myself my gradient everything turns black.

    To add to the above, you can just set the angle. If you want to use other existing parameters, you need to get from the layer. The code in this other thread shows a way to get them.

    But if you do not have the values for any other reason, you can get the handle to the layer, make a duplicate of it with all the settings and just crush those you want to change.

    It is a way to just change the angle while keeping the other existing settings.

    // helper function for working with descriptors
    function getProperty( psClass, psKey, index ){// integer:Class, integer:key
        var ref = new ActionReference();
        if( psKey != undefined ) ref.putProperty( charIDToTypeID( "Prpr" ), psKey );
        if(index != undefined ){
            ref.putIndex( psClass, index );
        }else{
            ref.putEnumerated( psClass , charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
        }
        try{
            var desc = executeActionGet(ref);
        }catch(e){ return; }// return on error
        if(desc.count == 0) return;// return undefined if property doesn't exists
        var dataType = desc.getType(psKey);
        switch(dataType){// not all types supported - returns undefined if not supported
            case DescValueType.INTEGERTYPE:
                return desc.getInteger(psKey);
                break;
            case DescValueType.ALIASTYPE:
                return desc.getPath(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.UNITDOUBLE:
                return desc.getUnitDoubleValue(psKey);
                break;
            case DescValueType.STRINGTYPE:
                return desc.getString(psKey);
                break;
            case  DescValueType.OBJECTTYPE:
                return desc.getObjectValue(psKey);
                break;
            case  DescValueType.LISTTYPE:
                return desc.getList(psKey);
                break;
            case  DescValueType.ENUMERATEDTYPE:
                return desc.getEnumerationValue(psKey);
                break;
        }
    };
    function duplicateDescriptor( descriptor ) {
        var newDescriptor = new ActionDescriptor;
        newDescriptor.fromStream( descriptor.toStream() );
        return newDescriptor;
    };
    function localizeDescriptor( desc ) {
        var stream, pointer, zStringLength, zstring, localized_string, newZStringLength, previousStream, followingStream, newDesc;
        stream = desc.toStream();
        while( true ) {
            pointer = stream.search(/TEXT....\x00\$\x00\$\x00\$/);
            if( pointer === -1 ) {
                break;
            }
            zStringLength = getLongFromStream( stream, pointer + 4 );
            zstring = readUnicode( stream.substr( pointer + 8, ( zStringLength - 1 ) * 2) );
            localized_string = ( localize( zstring ) ) + '\u0000';
            newZStringLength = localized_string.length;
            previousStream = stream.slice( 0, pointer);
            followingStream = stream.slice( pointer + 8 + zStringLength * 2);
            stream = previousStream.concat( 'TEXT', longToString( newZStringLength ), bytesToUnicode( localized_string ), followingStream );
        }
        newDesc = new ActionDescriptor();
        newDesc.fromStream( stream );
        return newDesc;
    };
    function getShortFromStream( stream, pointer ) {
        var hi, low;
        hi = stream.charCodeAt( pointer ) << 8 ;
        low = stream.charCodeAt( pointer + 1 );
        return hi + low;
     };
    function getLongFromStream( stream, pointer ) {
        var hi, low;
        hi = getShortFromStream( stream, pointer) << 16;
        low = getShortFromStream( stream, pointer + 2);
        return hi + low;
    };
    function readUnicode( unicode ) {
        var string = "";
        for( i = pointer = 0; pointer < unicode.length; i = pointer += 2) {
            string +=String.fromCharCode( getShortFromStream( unicode, pointer ) );
        }
        return string;
    };
    function longToString( longInteger ) {
        var string;
        string = String.fromCharCode( longInteger >>> 24 );
        string += String.fromCharCode( longInteger << 8 >>> 24 );
        string += String.fromCharCode( longInteger << 16 >>> 24 );
        string += String.fromCharCode( longInteger << 24 >>> 24 );
        return string;
    };
    function bytesToUnicode( bytes ) {
        var unicode = "", char_code, charIndex;
        for( charIndex  = 0; charIndex < bytes.length; charIndex ++ ) {
            char_code = bytes.charCodeAt( charIndex );
            unicode += String.fromCharCode(char_code >> 8 ) +  String.fromCharCode( char_code & 0xff );
        }
        return unicode;
    };
    
    function setGradientAdjustmentAngle( angle ) {
        var adjustmentDesc = getProperty( charIDToTypeID("Lyr "), charIDToTypeID( 'Adjs' ) ).getObjectValue(0);
        var newAdjustmentDesc = duplicateDescriptor( adjustmentDesc );
        newAdjustmentDesc.putUnitDouble( charIDToTypeID('Angl'), charIDToTypeID('#Ang'), angle );
    
        var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( stringIDToTypeID('contentLayer'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
        desc.putObject( charIDToTypeID('T   '), stringIDToTypeID('gradientLayer'), newAdjustmentDesc);
        executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    };
    var newAngle = 45;
    setGradientAdjustmentAngle( newAngle );
    
  • Our phone will make more phone calls, and we do not know how to change the settings to restore the capabilities of phoning.

    Our phone will make more phone calls, and we do not know how to change the settings to restore the capabilities of phoning.

    Greetings jenniferfrom46,

    From your post, I see that you are unable to make phone calls. I count on the ability to use my phone a lot to make calls, so I can understand your concern. I will be happy to provide you with some information for you.

    If you can not make or receive calls on your iPhone, this article goes on measures to take to help with the issue you are experiencing.

    Have a good!

  • How to change the language settings in firefox using JavaScript

    My question is: how to change the language settings in the use of JavaScript in firefox:

    I want to set the value of intl.accept_languages en using JavaScript.

    How can I do?

    EDIT: The reason mail, I want to do is to be able to run selenium for different languages test scenarios with manually change them rather progrmmetically

    You will need to close and open the pref via user.js or prefs.js before restarting Firefox to perform the next test.

    See:

  • How to change the color of Satellite Pro P300 settings

    I just received my new laptop computer and cannot for the life of me find how to change the color settings in the monitor.
    My old desk there was a button on the monitor.

    In a first time laptop user im nuts will try to find how to change my monitor settings...

    If anyone can help id be so grateful

    Please don t mix the portable computers internal monitor with external PC monitor.
    You won't find any control unit and on the external monitor that would help you to change the color.

    I put t know what your laptop smart chart uses but my laptop supports Intel graphics card and pre-installed (in Control Panel) Intel Graphics Media Accelerator provides a few color correction settings.
    The parameters are; color, gamma, brightness and contrast

    Here, you can set values between 0 and 100

    Maybe it's what you're looking for

  • How to change the settings on the Equium A100 color & contrast

    Does anyone know how you change the settings on the Equium A100 color & contrast? Thank you.

    Hello

    Change the contrast and color?
    Well buddy, you can change the screen brightness level using the FN + F6 and F7 key combination of.
    The other settings are only editable in the properties of the graphics card.
    I put t know what graphics card you are using but usually you must search advanced options.
    Check if there is no gamma, brightness or contrast settings.

    I found these settings on my laptop. I have a graphics card intel and the option was called the color correction

  • ProBook 4440 s: how to change the settings of the bios on my hp ProBook 4440 s to increase dedicated video ram

    How to change the settings of the bios on my hp ProBook 4440 dedicated to increase video ram?
    I want to increase to play better games.
    How to change through the bios I don't know.
    Help me pls.

    Thank you

    The days of being able to change RAM in BIOS went Bye Bye a few years ago. It was back in the day.

    You can't make changes to the video RAM settings in BIOS.

    You can reduce the resolution if you want to increase performance in a menu of own game options, but at a cost of resolution.

  • How to change the default path for documents and settings

    How to change the default path for documents and settings

    I try to change in the registry, but the profile can create but error! had no choice to change the default path % lecteur_systeme % d: /.

    Hello

    I suggest you to download TweakUI, this could help you or get you headed in the right direction
    http://Windows.Microsoft.com/en-us/Windows/downloads/Windows-XP

    Also this KB could help as well:
    http://support.Microsoft.com/kb/236621

    It will be useful.

  • How to change the security settings on a wireless network

    I would change the existing network security settings to WPA2, AES, or at least from TKIP AES.

    I am familiar with access via browser to the router and how to change the settings of the router.

    My question is how to make this as painless as possible for the network.  Step by step would be great

    First of all, I guess I have to change the settings of the router using the computer running Easy Link Advisor?

    Do I then have to disconnect/reconnect this computer?

    Do I have to unplug all the other computers and then sign in again with the update settings?

    The change of security settings affect my print server?  If so, I put up from scratch in ELA?

    For the record, I have a WRT 300N and the print server is a 54g.

    Anyone who reads this can also focus on recent news.  Maybe not a big deal, but a WPA/TKIP vulnerabilities has been identified.

    Thanks in advance to anyone who responds.

    If you change the router's wireless security settings, it will affect all devices that connect wireless to the router. To change the settings, simply set until you want on the web interface of the router. Save the settings. You need not link to that Advisor. Direct access to the web interface of the router is sufficient and preferable.

    All devices configured to connect to this network should ask if they connect more. It depends on type of what you had before. If you have not used WPA2 or WPA before having to ask for the password. If you used the WPA or WPA2 with the same password that they cannot even ask the password. How it works in detail with a specific wireless device depends on the device and the software you use. Some devices may require you to first remove the network wireless in the list of "preferred networks" and then reconnect.

    Check the manual of the print server how to configure for the new security settings. You should be able to reconfigure the print server through a web interface. First, it is probably best to change the settings on the print server and then make the change on the router. Otherwise, you may have a hard time, connection to the print server to make the change. In addition, depending on how old the print server is that it cannot even support WPA2 and AES.

  • How to change the system from Vista Home Premium to Vista Ultimate 64 withoute lose the option of HARD drive backup?

    IM now running Vista Home Premium 32. I would like to change the system for Vista Ultimate 64 so I can run more than 4 GB of memory. Now Ive some factory settings if something happened, I can run my HARD drive restore. My question is how to change the Vista 64 operating system, so I can keep the recovery on my hard drive partition?  Mayby there is some kind of upgrade cd?

    Thank you

    Hello

    32-bit to 64-bit is not an upgrade

    It must be done with a clean installation using a full version ' / Ultimate 64 bit license

    Contact the manufacturer of your computer for more information on getting 64-bit ultimate, which I doubt they will always

    and microsoft sells more vista

    they moved on windows 7

    and you are supposed to make this partition recovery disks to reinstall vista

    ask the manufacturer of the computer how to

  • How to change the Windows settings to allow for the camera driver must be installed

    My laptop doesn't recognize my digital camera. The correct software is responsible for the camera. An error message indicates that Windows will not allow access to the driver. How can I change the settings in Windows so that the driver for the camera is recognized?

    Help please!

    Hi Brian,.

    1. are you able to install all device drivers?
    2. which antivirus program is installed on your computer?
    3. don't you make changes to the computer before the show?

    The question seems to be as a program is blocked.
    I suggest you perform the clean boot and check if the problem persists. Clean boot helps eliminate conflicts of software that occur when you install a program or an update or when you run a program in Windows. You can also troubleshoot or determine what conflict is causing the problem by performing a clean boot.

    How to perform a clean boot in Windows
    http://support.Microsoft.com/kb/929135

    Note: Follow How to reset the computer to start as usual after a clean boot troubleshooting article KB929135 to reset the computer in normal mode.

    I hope this helps.

Maybe you are looking for

  • Crash on iPad

    My ipad freezes. I have reset a few times (the latter being reset to factory settings). no problem with the battery life. Can it get fixed and if so, how much and why it crashes?

  • Refresh/Stop button is missing from the URL bar in 27 FF.

    My position only bar shows 'bookmark this page' and the history of drop down menu on the right. He used to have a button that switches between refresh and stop depends on whether a page was currently loading, which is gone. It happened after restarti

  • Siri does more work without Wi - Fi in 9.3.2 (Sprint)

    Since the upgrade to 9.3.2 I can no longer use Siri on my 4S unless I am connected to WiFi I shot Siri to active to inactive and restarted the phone, have had no effect. I get the error message "connect to internet" when I press the home button to tu

  • Qosmio F50 - 10 M: how to disable the touchpad?

    Hello guys,. usually, I use a led USB mouse to use Win7. When writing text, I often get in contact with the touchpad of the unwanted. Like I can't identify the device in the hardware Manager, I'm not able to disable the touchpad when using the mouse.

  • Error code: 0xC800042D (cannot install updates)

    I can't update windows