How to move new Windows 8 file swapfile.sys to another drive?

Windows 8 has a new swapping / paging file called swapfile.sys. It resides in %SystemDrive% directory, or C:\ for most users. It looks to be a swap file for Modern UI / Metro apps (source: https://blogs.technet.com/b/askperf/archive/2012/10/28/windows-8-windows-server-2012-the-new-swap-file.aspx?Redirected=true).
I wanted to ask how this can be moved to other drives, the same way pagefile.sys etc can be.
After having just installed Windows 8, I am going through the process of moving files that get a lot of writes, like pagefile.sys and hiberfill.sys, to other mechanical drvies, instead of being on my SSD with it’s limited write life. There seems to be no method
of doing this for swapfile.sys.
After a search, only this tread turned up (http://answers.microsoft.com/en-us/windows/forum/windows_cp-performance/to-move-swapfilesys-to-another-drive/bd1d5424-e410-4742-9668-e5060a021d40?tm=1356272384010), for the same question but it as never answered. All
that was explained, was how to disable both pagefile.sys and swapfile.sys. Also how to move pagefile.sys. The question about moving swapfile.sys was never answered. Hence why I am asking again. There also seems to be no registry settings for this file, that
I could find to change, to accomplish pointing it's location elsewhere.
Am not interested into getting into a debate about whether it is worth while moving files off SSD's to save on writes.
So if someone, ideally from Microsoft, can explain how to do, with this new swap file, what had been possible with the existing page file, for a good few Windows versions it would be much appreciated. Or how it can be disabled, without disabling the normal
pagefile setup, as I don't use and don't intend Modern UI apps.

I also think this could not be moved and I could not find any document about moving it, either.
Thanks.
Nicholas Li
TechNet Community Support

Similar Messages

  • How to move iTunes Library/Media Files to external firewire Hard Drive and make it the master library, and then point iTunes to that  when adding new content??

    How to move iTunes Library/Media Files to external firewire Hard Drive and make it the master library, and then point iTunes to that  when adding new content??

    Copy your ENTIRE iTunes FOLDER to an External Drive...
    Full Details Here  >  http://support.apple.com/kb/HT1751
    To Operate iTunes from the External Drive...
    Start iTunes with the Option key held down and guide it to the new location of the library.
    Be Sure the drive is Formatted Mac OS Extended (journaled)
    Also...  have a look at these 2 Videos...
    http://macmost.com/moving-your-itunes-library.html
    http://macmost.com/moving-your-itunes-media-to-an-external-drive.html

  • How to move the OS and files to a different internal drive?

    I want to move the contents, including the OS, of the main hard drive on my 2 X 3 Ghz Dual core Intel Xeon Mac Pro. The drive is too small for any additional software, so I want to move it to a much larger internal drive.  I am not able to use Carbon Copy Cloner.
    Your help would be appreciated.

    The hatter wrote:
    This is just Part 2 of a thread from earlier today and yesterday:
    https://discussions.apple.com/message/18583293
    I had noticed that..... thanks for the headsup.
    R

  • How can I install new windows on NB200-10z without a CD drive?

    Hi,
    I have a mini laptop "Toshiba nb200-10z" and it doesnt startup anymore.
    I would like to do a recovery, but it also doesnt work.
    I know there is a shortcut like press the 0 button when the laptop is starting up.
    With this shortcut you can start the recovery to reset the software.
    But when I press the 0 button it gives me an error.
    So I think the recovery drive/partition is lost.
    How can I install new windows on this minilaptop without a CD drive?

    I have found a much easier way to install Windows 7 from a USB Flash drive. Unlike other methods where you have to write complicated commands, this method can be completed even by those who have very little computer background.
    The whole process takes only two steps, run UNetbootin, load the Windows 7 ISO file, and finally restart your computer.
    Before you begin, you will require the following:
    USB Flash Drive (4GB minimum)
    Windows 7 ISO Image file
    UNetbootin
    Note: If UNetbootin doesnt work, try out the Microsofts official tool called Windows 7 USB/DVD Tool.
    Now insert the USB drive, run UNetbootin, and select Disk Image as ISO. Browse your local drive for Windows 7 ISO that you downloaded and click Open. Now Select Type as USB and choose the drive. Once done, it will look like a bit similar to the screenshot shown below.
    Click OK and it will begin extracting all installation files to the USB drive. The whole process will take some time (10-15 minutes), so have patience.
    Once the installation is complete, reboot your computer. Now while your system is starting up press the appropriate button (usually F1, F2, F12, ESC, Backspace, or Escape) to bring up Bios Boot Menu.
    Change the startup order to boot USB by default, usually you will have to press F6 to move the selected USB device on top. Once done, save changes and restart the system.
    +Message was edited: link has been removed+

  • How to open new window and generate oracle report from apex

    Hi,
    I had created an application that generates PDF files using Oracle Reports, following this Guide.
    http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    And I followed 'Advanced Technique', so that users can't generate PDF file by changing URL and parameters. This is done for security reasons.
    But in this tutorial, when 'Go' button is pressed, the PDF file is displayed on the same window of apex application. If so, user might close the window by mistake. In order to avoid this, another window have to be opened.
    So, I put this code in the BRANCH - URL Target. (Note that this is not in Optional URL Redirect in the button property, but the branch which is called by the button.)
    javascript:popupURL('&REPORTS_URL.quotation&P2100_REP_JOB_ID.')
    But if the button is pressed, I get this error.
    ERR-1777: Page 2100 provided no page to branch to. Please report this error to your application administrator.
    Restart Application
    If I put the code 'javascritpt ....' in the Optional URL Redirect, another window opens successfully, but the Process to generate report job is not executed.
    Does anyone know how to open new window from the Branch in this case?

    G'day Shohei,
    Try putting your javascript into your plsql process using the htp.p(); procedure.
    For example, something along these lines should do it:
    BEGIN
    -- Your other process code goes here...
    htp.p('<script type="javascript/text">');
    htp.p('popupURL("&REPORTS_URL.quotation&P2100_REP_JOB_ID.")');
    htp.p('</script>');
    END;
    What happens is the javascript is browser based whereas your plsql process is server based and so if you put the javascript into your button item Optional URL Redirect it is executed prior to getting to the page plsql process and therefore it will never execute the process. When you have it in your branch which normally follows the processes, control has been handed to the server and the javascript cannot be executed and so your page throws the error "Page 2100 provided no page to branch to"... By "seeding" the plsql process with the embedded javascript in the htp.p() procedure you can achieve the desired result. You could also have it as a separate process also as long as it is sequenced correctly to follow your other process.
    HTH
    Cheers,
    Mike

  • How Do I create Windows Form file in VS and add the form to my VS project?

    C#, How Do I create Windows Form file in VS and add the form file to my VS project by using C# code?
    I like to create a Windows Form file into my VS Win Form project by using C#. I have the path and the file name.
    I need a Win Form with FileName.cs, FileName.Designer.cs, FileName.resx, and FileName (as you see it VS by adding a Win Form manually by using VS)
    Rune Brattas

    You cannot create a Form from code at run time. 
    For one thing, the user running your application will, almost certainly, not have  a copy of Visual Studio to hand with which to build anything.  (Not that you actually need 'Studio at all; Notepad and csc.exe are all you actually
    need), but that's another story).
    You can do this with an awful lot of pain, using the innards of the compiler from iside your own program, compiling the new Form's source code on the fly and then executing the resulting assembly within your application.  IMHO, that's a simply terrifying
    prospect especially as the code you will be compiling will be on someone else's machine and over which you will have absolutely no control.  If you're lucky, they'll spell something wrong and it won't compile.
    The "usual" way to do this sort of thing is to create additional, "plug-in" forms as library assemblies and have your program load and execute these at run-time. 
    Regards, Phill W.

  • How to use a Windows Help File (.hlp) - URGENT

    Hello!
    Can anybody tell me how to use a windows help file (.hlp) in my Java application? Is there any possiblity to reference a specific topic (by Help Context-ID)?
    Thanks in advance,
    Phil

    try calling the Runtime.exec() method
    pass the paramter String as <filename>.hlp
    i donno about the context
    regards
    rohan

  • New Window under File doesn't open in Mavericks Safari - Bug?

    This newOS is tricky!  Sarai's New Window under File isn't working for me.  When I select it nothing happens  .....

    I had the same problem. Do you have Glims installed? If so, uninstalling it may fix the problem.
    You can download an uninstaller here:
    http://www.machangout.com/node/9
    After you mount it, and click the uninstaller, it says it won't work because it's an unidentified developer. So you have to right click and do Open, and then it will give you the option to open.
    After I uninstalled it, Safari 7.0 works fine!

  • How do I extract my music files from a evternal hard drive and put them on my itunes?

    how do I extract my music files from a evternal hard drive and put them on my itunes?

    If you used the Finder to move the files, iMovie will have lost track of them. iMovie holds the locations of the Event files, and Project files contain references to those locations. If you move the files, iMovie has no way of knowing where they are.
    If you can, first move all the files back to their original locations. Plug in the external drive. Open iMovie and move the files in iMovie's interface (help explains how, but basically, just drag and drop in the event pane).
    Then you can connect the drive to the new computer, and iMovie will see them.

  • How do I get Windows 8 Pro to recognize my optical drive?

    How do I get Windows 8 Pro to recognize my optical drive? I put in an installation disk and the OS does not recognize it is there?

    I looked for drivers for my superdrive but they don't appear to be available from the manufacturer (Sony). Fortunately I was able to load the contents of the installation disk onto the mac side of my computer and transfer it onto the windows side where I could install it. So I am fine for now but it would be nice to have a functioning optical drive on my windows side if possible.
    The superdrive is internal. I downloaded the bootcamp support files from bootcamp assistant right before installing windows so I assume if a driver exists it would have been installed.
    Do you know where I could get a Windows 8 driver for an internal OPTIARC DVD RW AD-5690H?
    Thank you for your help.

  • How do I convert a Pages file (a form) into another programme like Word or InDesign? I do not have Pages

    how do I convert a Pages file (a form) into another programme like Word or InDesign? I do not have Pages

    In OS X Pages '09 v4.3, do not be tempted to File > Save... copy as Word document. Instead, you want to export (or Share as Mail), both the PDF and the Word Documents.
    If you choose Share > Send as Mail > PDF (and/or Word), make sure that in Apple Mail, that your composition window has Send Windows-Friendly Attachments selected. You can enable this from the paper-clip icon on the Mail composition window toolbar.

  • I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?

    I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?
    Thanks!
    David

    Either of these should help.
    http://grandperspectiv.sourceforge.net/
    http://www.whatsizemac.com/
    Or search 'disk size' in the App Store.
    Be carefull with what you delete & have a backup BEFORE you start, you may also want to reboot to try to free any memory that may have been written to disk.

  • How can I store my music files on an external hard drive and listen to them through iTunes that way?

    How can I store my music files on an external hard drive and listen to them through iTunes that way? At the moment they're both on the external hard drive and also stored on the computer but I'm quickly running out of memory on my iBook G4 so I'd like to only keep them on the external hard drive and, if possible, delete them from my computer's hard drive. At the moment, when the hard drive isn't plugged in a lot of the files won't play and I get the exclamation mark next to the particular song in iTunes, but everything plays fine when the hard drive is plugged in.
    Thank you.

    Sounds like your files are playing from the external drive already.  To check go to iTunes - Preferences - Advanced and check the Media Folder Location.  Change it to the external drive if you need to.

  • How can I install Windows 8.1 using a USB Pen Drive in Late 2011 Macbook Pro with DVD R/W given.

    How can I install Windows 8.1 using a USB Pen Drive in Late 2011 Macbook Pro with DVD R/W given.
    I have Boot Camp 5.1.2 (497) and there is no option for installing using USB. I have downloaded an image of Windows 8.1 already.
    I can't install using DVD R/W because it's not working.
    Please help me.
    Thank you.

    unlocked by myself
    thanks

  • How do I open a PDF file stored on the iCloud drive with my iPad?

    How do I open a PDF file stored on the iCloud drive with my iPad?

    This document explains how:
                     Opening PDF Files in Reader for iOS (iPhone and iPad)

Maybe you are looking for

  • Construindo vetores

    Boa noite colegas.  Meu problema é o seguinte:  Objetivo: Contruir um subVI que faça média móvel de "n" elementos de um vetor que faz sucessivas leituras. Meu algoritmo mental: 1º) Inicializar o vetor: valor de INICIALIZAÇÃO e "n" ELEMENTOS; 2º) Quer

  • Automatically export data from a pdf, then automatically populate other forms with that data?

    I'm building a form which will hopefully cut down on the user being required to redundantly fill in the same information on different forms. By filling out one form, I want to be able to have the user submit that form (or more succinctly, the xml dat

  • Hotsync Log does not show any information since August 2008. My Treo 755p has been syncing fine but nothing shows in the log!

    I just noticed that when I am done syncing, the Hotsync Log does not have any information about the most recent operation.  In fact the date of the last entry in the Log is August!  Anyone know why this is happening and how to fix this? Thanks. Post

  • Copy command error

    I made a selection and used edit>copy but get a Photoshop Elements Editor error message, "Could not complete the copy command because of a program error." What have I dobe wrong?

  • EXPORT 실행 시 ORA-1403 조치 방법

    제품 : ORACLE SERVER 작성날짜 : 1995-11-06 EXPORT 실행 시 ORA-1403 에러가 발생되는 경우가 있는데, 이 에러는 테이블 혹은 index에 문제가 있는 경우 발생할 수 있다. 여기서는 ROWID를 사용하여 table을 복구시키는 방법을 소개한다. 1. 기존 테이블과 같은 구조를 갖는 테이블을 만든다. SQL> CREATE TABLE TEMP AS SELECT * FROM EMP WHERE 1=2; 2. 기존 테이