How do I move two exe. files to a windows 8 machine

I have two exe. files I need to move to a windows machine. I believe I may be able to do this via ethernet cables. Is there some set of instructions somewhere that can help me with this? The windows version is 8.xx. I have no idea about it. The last time I bought a non-Apple computer was way back before Windows even  existed. There was such a time. Back in the 80s. The 1980s. This little Toshiba laptop I bought today is here for one reason only and that is to run firmware updater routines on a Davis Weather Console that cannot be accessed via a Mac. I don't have a lot of time to waste on this. I hope somebody knows how to do this. Sure appreciate some help if you can do this.

Hello lopezcalling,
The following article provides the necessary steps and information for setting up filesharing with a Windows computer.
OS X: How to connect with File Sharing using SMB
http://support.apple.com/kb/HT5884
Cheers,
Allen

Similar Messages

  • My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?

    My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?
    thanks

    for windows you should have an exe and a 7z file.  put both in the same directory and double click the exe.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • How to run an external .exe file from an indesign pluging

    Hi,
          Suppose if I have written an separate application in C++ (.exe file) & need to run it from an indesign pluging(as if a service in windows). have you provided that facilities in your SDK? if it's please let me know how to run an external .exe file from a indesign pluging.
    Thanks,

    I'm actully writing data in PMString to a external txt file.
    another question..
    if i want to execute an action when the ok button is cliked how can i do it?
    whe i add a button(widget) i know how to handle it. please see my code.
    // Call the base class Update function so that default behavior will still occur (OK and Cancel buttons, etc.).
    CDialogObserver::Update(theChange, theSubject, protocol, changedBy);
    do
    InterfacePtr<IControlView> controlView(theSubject, UseDefaultIID());
    ASSERT(controlView);
    if(!controlView) {
    break;
    // Get the button ID from the view.
    WidgetID theSelectedWidget = controlView->GetWidgetID();
    if (theChange == kTrueStateMessage)
    //if (theSelectedWidget == kEXTCODGoButtonWidgetID
    switch(theSelectedWidget.Get())
             case kEXTCODGoButtonWidgetID:
      this->ViewOutput();
      break;
             case kEXTCODFindButtonWidgetID:
      this->SaveLog();
      break;
    // TODO: process this
    } while (kFalse);
    I do two actions "SaveLog" & "ViewOutput()" using two buttons. But i dont know how to execute an action when the ok button is clicked...

  • Two .exe files to run sequentially

    Inside a class, I am running two .exe files. But even before the first .exe gets terminated, the second .exe file is getting executed.
    Could someone please tell me how do I run these two .exe files sequentially.
    At present no error is thrown, but the necessary number of files are not created from both the .exe files.

    If I am right in understanding, is this what you meant for me to do. But still from the below code, before the execution of the first .exe, the second .exe is getting executed.
    Please tell me what updations to do in my code.
    public class Compile
         int flag=0;
         public Compile()
         void compileFile(File newFile, String renameSub, File outputfile, String fontName, String IntallPath) throws IOException
              String FirstParam = "C:\\Temp\\Installation\\test.tex";  
              String FirstParam2 = "C:\\Temp\\Installation";
              String SecondParam = "C:\\Temp\\Installation";  
              try
                   Process proc1 =Runtime.getRuntime().exec("cmd /c start /MIN tex " + FirstParam, (String[])null, new File(SecondParam));
                   InputStream stderr = proc1.getErrorStream();
                   InputStreamReader isr = new InputStreamReader(stderr);
                   BufferedReader br = new BufferedReader(isr);
                   String line = null;
                   proc1.waitFor();
                   if(proc1.exitValue()==0)
                        System.out.println("tex is executed successfully");
                        flag=1;
              catch (Throwable t)
                   t.printStackTrace();
              if(flag==1)
                   ... code for second .exe file ...
    }

  • How can I move an icon/file from one screen of my ipad to another?

    How can I move an icon/file from one screen on my ipad to another?

    Press and hold the icon until they start to wiggle. Then while holding it, drag it to the edge of the screen and wait for the page to switch, then let go of the app

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • How do I move a keynote file from my computer to my ipad?

    I have a Mac OS X version 10.6.8 and an Ipad version 7.0.6. How can I move a Keynote file from my Mac to my Ipad? I do not have Icloud on my Mac.

    Have you tried e-mailing the Keynote file to yourself? You can then press and hold on the attachment in Mail and choose to open in Keynote. However the results may depend on your version of Keynote.

  • How can I delete two .jpg files from my desktop that refuse to be deleted?

    How can I delete two .jpg files from my desktop that refuse to be deleted?

    The two icons refused to be moved to the garbage. The good part in all this is that ater I turned off the computer at night and turned it back on the next morning they were gone!
    Thanks.

  • How do I move a pdf file from my download area into adobe reader

    How do I move a pdf file from my download area into adobe reader

    Hi!
    Adobe Reader automatically lists all the PDFs on your device in it's file browser. You can toggle between the "All PDFs" view and "Folder View" in the "Documents" tab of the file browser.
    Thanks
    Adobe Reader Team

  • How do i move a video file from the theater to the library for more editing? New version of iMovie.

    How do I move a video file from theater to the library for additional editing in iMovie. It is a new iMac so i guess i have the newest version of iMovie.

    Hi hilldw61,
    Welcome to the Apple Support Communities!
    I understand that you have added a clip or project to iMovie Theater but would like to continue working on it. When you upload the project to iMovie Theater, the original project remains in iMovie where you can edit it further. 
    Add, remove, and play clips and projects in iMovie Theater - iMovie Help
    Best regards,
    Joe

  • How do i move a data file from my pc to my ipad

    How do I move a data file from my computer to my ipad? It is my product catalogue and it would help if it were on my ipad.

    Plug the iPad into iTunes and you can use file sharing to move it into an app that supports file sharing and that document format.
    see http://support.apple.com/kb/ht4094
    Or, use an online storage service (iCloud, dropbox, box, google drive, sugarsync, etc) and upload the file to that.  Then on the iPad, from within the app you plan to use the file with, link to that service and download the file.
    The app will again have to work with that file type, and support the particular service you used.

  • How do I move a downloaded file (from YouTube) to GarageBand so as to separate video from audio, then send audio to iTunes?

    How do I move a downloaded file (from You Tube) to Garagband - so as to separate video from audio (which I will send to iTunes)

    Create a new GarageBand "Movie" project, then import your movie into GarageBand, by dragging it from the "Movies" tab of the Media Browser into the Timeline. GarageBand will split the movie into a video channel and an audio channel. Delete the video/movie channel and use the "Share" menu to send the audio channel to iTunes (assuming you have iLife '11 GarageBand)
    Regards
    Léonie

  • How do I move a music file in iTunes on my PC onto my iPad to add to an iMovie project?

    How do I move a music file in iTunes on my PC onto my iPad to add to an iMovie project?

    CBellC-
    I do not have iMovie, so I can't try this!
    Run iTunes with your iPad connected to the computer, either by the USB cable or by WiFi.  Select the iPad under DEVICES in iTunes.  Click on Apps at the top of the window and scroll down to File Sharing.  If iMovie appears there, select it.  The Documents window to the right is where you transfer files to (Add) and from (Save To) the iPad.
    Fred

  • How do I move a MUSE file

    How do I move a MUSE file and relaged pages from one location on my web site
    This will require renaming the links from www.mydomain/OLDSITE/index.html
    to
    www.mydomain/NEWSITE/index.html

    If you are hosted on Business Catalyst, you don't have to move anything just change your default page setting:
    http://www.youtube.com/watch?v=BlPzL0icNp0
    If you are on a third party hosting just use an FTP program and upload where ever you wish.

  • Yours sincerely! I just bought a Sony DCR-SD1000 camera only when installing the cd drivers not supported by the operating system Machintosh. I've contacted the seller said the store did not provide for the apple os. How can I move all the files on the ca

    Yours sincerely! I just bought a Sony DCR-SD1000 camera only when installing the cd drivers not supported by the operating system Machintosh. I've contacted the seller said the store did not provide for the apple os. How can I move all the files on the camera the port out is to use a USB data cable to a laptop for my macbookpro can not read the contents of the file and the camera. I also want to use the lens on the camera as a substitute for the embedded camera on my macbookpro, what should I do to replace the embedded camera on macbookpro with sony camera so that the camera could be more variety and can I record when I turned macbookpro . Please help for this so that I can quickly capture the results from sony camera to my macbookpro. Thank you.

    See this page http://macosx.com/forums/networking-compatibility/296947-sony-camcorder-my-mac.h tml - might be some helpful tips there.
    Clinton

Maybe you are looking for

  • TS1363 My iPod and iPod nano are no longer recognised by iTunes.

    I have read and followed all the numerous recommendations but to no avail. Does any one have a solution? I've checked and recheck and re installed everything. Still no good. The iPad gets recognised ovr the wifi but thats all. Help someone? David

  • HT4650 Display freezes

    In the last few days, when I hit a key to start up the computer, all I will get is a blank screen with the small, multi-colored, rotating disk icon.  I can't get out of this unless I hold the power key down for about 5 seconds, which I know is probab

  • My ipad 2 won't fully restore, it stops at about 95%

    i went to update my ipad to 4.3.2 and it saif i had to restore it, and i have tried 4 times letting it go for about 2 hours each time, and it gets hung up when the bar is almost full, the same place each time, my itunes is current. i have talked to A

  • How can I redownload music I previously bought?

    I have a number of tracks that I have purchased through my account on itunes. Recently, I lost everything on my computer, which of course includes my music. (I have it backed up on my ipod which is set up to act as storage as well, but it's been lost

  • Designer export of workarea/container

    Hello all, I want to do an export of Designer work-area particularly containers. My question is can i export only certain pieces of container? for example I may have certain documents in my container i dont want to be exported. Or do i have to copy w