REMOVE SKYDRIVE WINDOWS 8.1

Windows 8.1 - How can I remove or disable skydrive.  The change registry suggestion (Run: gpedit.msc) does not work and I find the program annoying.

This can be done with gpo's as well if you fancy that:
Computer Configuration > Administrative Templates > System > Logon
... but this won't work in an OSD scenario, as GPO processing is blocked when a TS runs.
Torsten Meringer | http://www.mssccmfaq.de
The GPO will be applied when the TS is complete and full OS is running. Just offering an alternative solution for those who's interested :-)
Martin Bengtsson | www.imab.dk
The GPO will be applied when the TS is complete, if the computer is in the correct OU. I'd also use SMSTSPostAction -variable to force a reboot for the machine after the TS finishes, this way the GPOs really do get applied during the restart.

Similar Messages

  • Cannot view InfoPath Form on SHarePoint 2013 since I removed SkyDrive for Business and installed OneDrive For Business

    I removed SkyDrive for Business and installed OneDrive for Business on my laptop. After that, I had problems opening a Word and Excel document in a SharePoint site (SP2013). After installing Service Pack2 from Office2010, this problem is solved. 
    But I still have the same problem with InfoPath. Whenever I click an InfoPath form (I have InfoPath 2010 on my laptop),...
    ... I get the error "cannot display web page".
    When I change the URL 
    ms-infopath:ofe|u|http://intranet.water-link.be/samenwerken/awwit/Autorisaties/Gebruikersbeheer/2015-02-25%20Aanvraag%20gebruikersbeheer%20voor%20Stephanie%20Geeraerts.xml
    into
    http://intranet.water-link.be/samenwerken/awwit/Autorisaties/Gebruikersbeheer/2015-02-25%20Aanvraag%20gebruikersbeheer%20voor%20Stephanie%20Geeraerts.xml 
    I can open the InfoPath form and read it.
    Any ideas about how to fix this ? I already tried to restore the Office 2010 via Control Panel - Install Programs but without any success... 

    Hi Gert,
    As I understand, you can’t open InfoPath form in SharePoint 2013 unless you change the URL without “ms-infopath:ofe|u|”.
    There are some reasons which maybe cause this issue, and you can try to do things below:
    Access CA -> General Application Settings -> Configure InfoPath Form Service -> Check the two options in User Browser-enabled Form Templates.
    Go into the registry by typing regedit from the Run line and rename the SharePoint.OpenDocuments.5 key (ex. SharePoint.OpenDocuments.5.old) under HKEY_CLASSES_ROOT.
    In library settings, click "relink documents to this library".
    Here are some similar posts for your reference:
    http://blogs.technet.com/b/office_integration__sharepoint/archive/2014/02/24/quot-the-webpage-cannot-be-displayed-quot-when-trying-to-open-edit-an-office-file-from-a-sharepoint-2013-site.aspx
    http://www.infopathdev.com/forums/t/28998.aspx
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Removing a window and adding a new one with swing.

    Hi,
    A friend of mine recently asked me to add a GUI for a small chat he made, so I thought I'd help him out. I've come across something that's troubled me in the past, and I could never find a solution. What I'm trying to do is make it so a log in window pops up (have that working alright) and then when you press sign in, it removes that window (log in) and adds the main chat window (have this fully functional, too).
    If someone could provide an example or point me in the direction of the proper API to look into, so that I don't have to look through them all, I'd be extremely grateful.
    Here's an SSCCE example:
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import javax.swing.DefaultListModel;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextField;
    import javax.swing.JTextPane;
    import javax.swing.ListSelectionModel;
    import javax.swing.ScrollPaneConstants;
    import javax.swing.SwingUtilities;
    public class Gui extends JFrame {
         public static final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
         public String sessionId;
         public int returnCode;
         public boolean recievedReturnCode;
         public boolean errorConnecting;
         public long lastActionDelay;
         private JScrollPane listScrollPane;
         private JList list;
         private JTextPane console;
         private JButton signInButton;
         private JScrollPane consoleScrollPane;
         private JTextField typingField;
         private DefaultListModel userList;
         private JButton sendButton;
         public static void main(String[] args) {
              try {
                   SwingUtilities.invokeAndWait(new Runnable() {
                        public void run() {
                             new Gui().setVisible(true);
              } catch (Exception e) {
                   e.printStackTrace();
         public Gui() {
              setResizable(false);
              setSize(500, 500);
              consoleScrollPane = new JScrollPane();
              console = new JTextPane();
              typingField = new JTextField();
              userList = new DefaultListModel();
              sendButton = new JButton();
              initializeLoginWindow();
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public void initializeLoginWindow() {
              setTitle("Login");
              signInButton = new JButton("Sign in");
              signInButton.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent evt) {
                        initializeChatWindow();
              signInButton.setBounds(5, 100, 75, 20);
              getContentPane().add(signInButton);
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(new JPanel());
         public void initializeChatWindow() {
              consoleScrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
              consoleScrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
              consoleScrollPane.setViewportView(console);
              consoleScrollPane.setBounds(5, 5, 575, 350);
              console.setEditable(false);
              typingField.setEditable(true);
              typingField.setBounds(5, 360, 575, 25);
              list = new JList(userList);
            list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            list.setSelectedIndex(0);
            list.setVisibleRowCount(5);
            listScrollPane = new JScrollPane(list);
              listScrollPane.setBounds(585, 5, 110, 350);
              sendButton.setText("Send");
              sendButton.setBounds(585, 360, 111, 25);
              getContentPane().add(consoleScrollPane);
              getContentPane().add(typingField);
              getContentPane().add(listScrollPane);
              getContentPane().add(sendButton);
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(new JPanel());
    }Thanks in advanced!

    jduprez wrote:
    I've come across something that's troubled me in the past, and I could never find a solutionWhat is the problem?
    a log in window pops up (have that working alright)
    and then when you press sign in, it removes that window (log in) and adds the main chat window (have this fully functional, too).Hum, between what is working alright and what is already functional, I fail to see what is missing. Again, what is your problem/question?
    If someone could provide an example or point me in the direction of the proper API to look into, so that I don't have to look through them all, I'd be extremely grateful.
    [url http://download.oracle.com/javase/tutorial/uiswing/components/frame.html]JFrames and [url http://download.oracle.com/javase/tutorial/uiswing/components/dialog.html]dialogs seem to show enough API usage to do that. Still, I stronlgy encourage you to read the whole Swing tutorial: http://download.oracle.com/javase/tutorial/uiswing/index.html
    Incase you didn't see the hyperlink above, here's the SSCCE link: http://www.mediafire.com/?e5e3ci3kbvickla
    The "S" in SSCCE stands for "Short" (or, depending on authors, "Simple"). Anyway, a decent SSCCE should fit within a forum post (between code tags please). The whole idea is to provide the simplest thing to people willing to help. No doubtful sites. No non-standard extensions.
    Best regards,
    The problem is that I cannot seem to remove the first pane, leaving the second one to be drawn on the current one.
    In reguards to SSCCE, I always thought it was just a short runnable class example, but I've added the class to the main post. I'll take a look at the API in a few as well.

  • How to remove old Windows files from partition other than C ?

    hello , i have recently installed windows 7 but it installed on driver D then i reinstalled it on C but i can't get rid of the old program files and windows files located on D ... tried normal delete but keep telling that i need trusted installer permission
    So , i was just wondering if i'll ever be able to delete these files ?

    Try this 
    http://windows.microsoft.com/en-us/windows7/how-do-i-remove-the-windows-old-folder
    or try taking the permission and then delete.. 
    Learn How to Take or Assign Ownership of
    Files and Folders 
    http://technet.microsoft.com/en-us/magazine/ff404240.aspx
    File and Folder Permissions
    http://technet.microsoft.com/en-us/library/bb727008.aspx
    Hetti Arachchige V Aravinda | Network & System Administrator (B.Sc, Microsoft Small Business Specialist, MCP, MCTS, MCSA, MCSE,MCITP, CCNA, CEH, MBCS)

  • I removed my Windows 7 in boot camp...then i restart the imac the mac HD is gone only recovery hd left...what do I need to do to recover the mac hd?

    I removed my Windows 7 in boot camp...then i restart the imac the mac HD is gone only recovery hd left...what do I need to do to recover the mac hd?

    Hi I just got out of this situation after two weeks of forums and have tried any kind of different solutions.
    If you have no response using start-up keys and you can't choose your start-up disk when pressing "Option" here is what to do.
    The problem in this situation is common to users that install Boot Camp and at one stage the installation fail, may be a bug in BootCamp or just our mistakes, it doesn't really matter here is the solution.....
    If you can start Windows, or Start the installation dvd of Windows do it, when In windows you will need to install BootCamp windows Driver, if you try to use the Apple downloaded file, it will not work.
    You need to find the zip file in internet I found it with Google.
    When you have the file run a "cmd" window with Administrator privileges.
    Navigate in the folder that you have decompressed and open the folder Drivers/Apple/ you will see the file BootCamp.msi or BootCamp64.msi, of course choose the one that correspond to your Windows System .... type the file name and hit enter .... the drivers will install .... but what we really want to be install is that little icon on the system tray (right bottom).
    After we will restart windows that little icon will give you the chance to restart the computer in OS X.
    If something during the BootCamp and Windows installation had corrupted your OS X installation, you will have to reinstall, but at least you will be able to do it now. ;-) It took me two weeks and lot of researches, it's an hour job. Have fun.

  • How do I remove a Windows partition after Firmware message?

    Want to remove the windows partition on my 2006 MacBook running Leopard. I tried Bootcamp Assistant but it says I need to update my Firmware. I downloaded the update suggested and then had a message saying the firmware didn't need updating. Tried Bootcamp again and had the same update message. How do I get rid of the disk partition? Any suggestions appreciated.

    Related problem. I upgraded my Tiger partition to 10.6.8. Boot Camp was eliminated in the process. When I choose Boot Camp assistant from finder it checks and reports that the 'software is not available' (core 2 duo 3,1).
    I understand that DU is not to be used but I can't figure out how to eliminate the old Win XP if I can't get bootcamp installed.
    Any ideas would be very much appreciated.
    Mike O

  • How can I remove exportpdf window from my screen?

    how can I remove exportpdf window from my screen? It clutters things up and is very annoying
    Ed

    I accessed it via reader, thinking it was a free part of Reader, but don’t have a use for it, and now I cannot get it off the screen where it takes up the right-hand 2 inches of my screen as clutter.
    Any ideas?
    Ed
    <removed by admin>

  • Remove Private Window Option in Safari MacBookPro

    Remove Private Window Option in Safari MacBookPro
    Hello there,
    I am trying to remove the Private Window Option in my Safari MBP Version: 10.10.3. I have found the following guide below, but I could not find the "MainMenu.nib" file. Is there a way to find this? Or is it possible to remove the Private Window option at all by not doing the below steps? Thank you! 
    Disabiling for Safari:
    The following steps will disable private browsing on all accounts.  Taken from: http://guides.macrumors.com/Safari#Disable_Private_Browsing (Note: you must have the Xcode tools installed - can get from App store):
    Control or right-click on the Safari icon in Finder and choose Show Package Contents.
    In the window that appears, navigate to Contents/Resources/English.lproj/ and double click on the MainMenu.nib file. (I cannot locate this file)
    In Interface Builder (From Xcode,) select the window showing the Safari menu bar.
    Select the Safari menu, then select the private browsing item and press delete.
    Type command-S to save the changes, then close Interface Builder and restart Safari.
    This removes the Private Browsing menu option, effectively disabling private browsing.

    There were some means of customizing Safari through OnyX, a utility interface tool that
    can be used to perform a variety of changes in OS X and a few of them could mess it up.
    You can modify hidden features in the OS X by use of OnyX, instead of attempting to
    perform some modification by command-line or Terminal; although the Man access
    also appears there, too.
    •Titanium Software - Home: (see OnyX)
    http://www.titanium.free.fr/
    A few command-line or terminal methods of changing how OS X works may be ill-advised
    to attempt without learning more about how all of that works and also how to understand
    the background system that changes when you mess with it. The GUI is the top layer.
    Did you look into the Developer settings for Safari to see if that will change your windowed
    options, without any external or deeper access to attempts to alter Private window view?
    For me, I've not used Safari all that much, and not as default main browser in any of my Macs.
    Good luck & happy computing!

  • How do I programmatically remove a Windows system font with LabVIEW?

    Is there a way to programmatically remove a Windows System Font?
    Thanks!

    If you know the font name, you should be able to just use the Delete function. On NT, Win2K, the fonts are stored in the WINNT\Fonts folder. I think you'll have to have admin rights to delete files there.

  • Problem removing a window partition

    today i installed window xp via boot camp, the installation seems fine all the way up until the step 'to install boot camp drivers'. after i inserted the Max OS X disc, it went thru the normal installation...etc. then towards the end i got the 'Found New Hardware Wizard' window and a second saying boot camp is finished. however, at this point the mouse is dead and i am unable to move it. i rebooted it a couple of times, still the mouse is disable.
    so, i boot back to Mac OS, open up Boot camp and decided to remove the window partition. i chose 'If your computer has a single internal disk, click Restore'...
    then i am at the 'restore disk to a single volume' with the status: partitioning disk spinning...
    when i created the window partition i used 15G and i have the unibody macbook with 250G. however, this window's been spinning for the past two hours. i really don't think this should take this long. is this normal?
    i do not want to re-install 10.5.5 and do a restore. what is the best way to delete the window partition? i suspect something is wrong with boot camp. what should i do?

    There are few things you need to make sure before you remove the federation, like permissions, TXT records etc.
    http://technet.microsoft.com/en-us/library/jj657500(v=exchg.150).aspx
    http://technet.microsoft.com/en-us/library/dd297972(v=exchg.141).aspx
    http://www.c7solutions.com/2012/03/fix-federation-trust-issues-after-html
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • I get an error message saying, "An error occurred while restoring the disk to a single partition." when I try to use Boot Camp Assistant to remove my Windows partition. Help?!

    I'm trying to remove my Windows partition and delete Boot Camp altogether off my laptop. When I try to remove the partition, I get an error saying "An error occurred while restoring the disk to a single partition."
    Can someone please help?

    Boot from another hard drive or DVD and repair with Disk Utility.

  • How do I remove the Windows partition? Boot Camp Assistant does not allow me to select the remove option.

    I am using an iMac, 8.1, early 2008. I installed Windows XP at that time. I am now using OS 10.8.5 and want to remove the Windows partition to free up disk space. Boot Camp Assistant does not allow me to select the "install or remove" option. How can I get rid of the Windows partition?

    You can try removing it in Disk Utility.
    To resize the drive do the following:
    1. Open Disk Utility and select the drive entry (mfgr.'s ID and size) from the left side list.
    2. Click on the Partition tab in the Disk Utility main window. You should see the graphical sizing window showing the existing partitions. A portion may appear as a blue rectangle representing the used space on a partition.
    3. Select the bottom rectangle/partition. Click on the Delete [-] button below the sizing window to remove it. Click on the Apply button. Wait until the process has completed.
    4. In the lower right corner of the sizing rectangle for the remaining partition is a resizing gadget. Select it with the mouse and drag it all the way down to the bottom. Click on the Apply button and wait until the process has completed. 
    You should now have a restored single volume on the drive.
    It would be wise to have a backup of your current system as resizing is not necessarily free of risk for data loss.  Your drive must have sufficient contiguous free space for this process to work.

  • How to remove the window options

    Hi,
    I want to remove the windows option like minimize, maximize and close symbol at the end of the windows title bar. wen making exe i click the option and only the main vi able to remove all this but in sub vi's all this elements is been disable.. i want to remove it complete wen it runs.. how to do that? ... plz help.
    another question.
    how to change the menu bar color.. and the font color and style?... need help.
    Thank you

    Not that I know of.
    Just tell her the X can't be removed.
    The customer isn't always right.
    Can you think of any window in any other program that doesn't have an X button to it?  I can't think of an instance.  I can't think of any place besides LabVIEW that can have an X button that can't be clicked.
    Is there a reason you do not want them to click the X button?  You can use an event structure to catch a Panel Close? event for the VI and discard the event so you can run your own code such as ensuring a clean and orderly shutdown of the VI.

  • Boot Camp won't let me remove my windows partition, please help

    I am trying to remove my windows partition and boot camp won't let me. It gives me a message +" The startup disk must be formatted as a single Mac OS Extended (Journaled) volume or already partitioned by Boot Camp Assistant for installing Windows."+ Please help!!!!!

    Use the Disk Utility to delete it and resize the partition immediately above of it so it takes up the released space.
    (51550)

  • I want to remove my windows password, tells me "required"?

    I want to remove my windows password and I get a prompt saying that the account policies require a password! What account!! Isn't this my computer? I do not want to have to sign in constantly!
    This question was solved.
    View Solution.

    Scott, welcome to the forum.
    When requesting help you should always include the make/model of the computer and/or monitor. This information is necessary for us to review the specifications of them.
    Here is a guide that will help you logon automatically using Win 7.  If you are using another OS, you can search for a guide for it.  This works great if you are the only user.  I use this method everytime that I reinstall my OS.
    Please click "KUDOS star" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

Maybe you are looking for

  • Updated to iPhone OS 3.1.3 - now iPhone not connected to 3G network

    This morning I installed the updated iPhone OS 3.1.3 on my iPhone 3G. A little while later, I realized I am no longer connected to the AT&T 3G network. I've noticed some users have experienced issues with WiFi after this update, but have been unable

  • Hr_infotype_operation for operation MOD

    Hi, There is a problem again using HR_INFOTYPE_OPERATION , while trying to create a new record it was successful, but when i tried to change a nonkey field the operation i have used is MOD, and it is not working. i search for it but found problem wit

  • Duplicate entries in ical

    I have just downloaded iOS5 on my iPhone 4 and all my current iCal entries have been duplicated.  Is there a way I can delete these, apart from going through them one by one (which could take many hours!)

  • I didn`t find the product section so i have to ask it here !!!??

    Ok here is my question you said in your ads about the web "the web we want" i think u shall change it to the world u or USA want why you didn't include Syria in the map??? is this the freedom u talking about or the openness ???? your openness is jail

  • Configure JDK logging per EAR

    I try to find out how to configure the JDK logging for one application (EAR). You can't initialize it your own because you don't have a main method or something similar. Is there any configuration option to set environment settings for an application