Trying to write to a windows drive

A client asked me to edit nearly 100 gb of audio data, and so he loaded it all on an external USB iomega hard drive and dropped in the mail. Except his computer was a windows system, which means the hd is a windows Windows NTFS disk. I can read the files just fine, and can even grab them and drop them onto my desktop. But I can't write to his drive, so i have no way to add all my edits of his originals.
This morning, seeking a fix, I started by copying all the data onto one of my own backup hard drives. My intent was to erase the entire drive, and then reformat it. But i still haven't erased anything yet, because, even if erased, I haven't been able to figure out a sure way to re-format the drive so I can write to it, and then when i send it back to him, he can also read and write it. Do i need special software to do this, or is there something within OS 10.4 that will let me do this.

Hi Jim,
A few options...
You could format that HDD as Fat32/MS-DOS, but you'd be limited to 4 GB Filesizes.
NTFS-3G Stable Read/Write Driver...
http://www.ntfs-3g.org/
MacFUSE: Full Read-Write NTFS for Mac OS X, Among Others...
http://www.osnews.com/story/16930
MacDrive for the PCs... allows them to Read/Write HFS+...
http://www.mediafour.com/products/macdrive/

Similar Messages

  • Group policy preventing write access to hard drive for Windows Service

    I recently stood up several SharePoint Servers which use various domain user accounts as service accounts. Everything was going fine until the servers were moved from the staging OU to the production OU which has a server hardening GPO applied to it. Once
    this occurred, all of SharePoint's logging via the Tracing service broke--because this account doesn't run as Local Service, but rather one of the domain user accounts.
    After examining the Application event log, I saw it filled with errors indicating the E:\Logs\ULS and E:\Logs\Usage were not accessible due to error 0x5 -- access denied.
    I explicitly granted permissions to the service account to these folders, and gave Full Control perms. I then restarted the service, but the Access Denied errors persisted. I granted Full Control to the entire E: drive -- the root folder -- with inheritance,
    and made sure the permissions were inherited. And yet the problem persisted.
    I installed a different application which can log to different drives, and it writes to the E: drive just fine when run as Local System. If I change it to one of the domain service accounts, it too produces Access Denied errors trying to write to the E:
    drive, regardless of the NTFS perms.
    The E: drive is a hard drive, not a USB or removable drive.
    I found several posts here that explain how to disable write access to USB and DVD media, but I cannot find anything how to block writing to a hard drive. The server hardening GPO contains thousands of different settings and it'll take days to comb through
    them all. Does anyone know of a GPO setting that can block writing to a hard drive, regardless of NTFS perms?
    The servers in question are running Windows Server 2012 standard (not R2).
    UPDATE: If I grant the service account the ability to log on locally (i.e. add it to the local Users group), and open a command prompt with "Run as User," I can write to the E: drive just fine. But the access denied
    persists when running as a service. This leads me to believe a GPO is blocking the write access to a
    service user but allowing the same account when logging in as an interactive
    user.

    I created a test Windows service that does nothing more than open two StreamWriter objects -- one to write into E:\Logs\ULS and the other into C:\ProgramData\Logs. The former writes dummy text once per second, while the latter writes errors. So error messages
    will get written into C:\ProgramData\Logs.
    I set up this test Windows Service and set it up to use my SharePoint app pool account, and this was written to the error log - the first line indicates the account being used.
    [8/22/2014 12:01:25 PM] - Error writer is initialized and ready. Execution context svc_SPSvcApp_J
    [8/22/2014 12:01:25 PM] - Directory E:\Logs\ULS does not exist.
    [8/22/2014 12:01:25 PM] - Failed to set up the log writer. Access to the path 'E:\Logs\ULS' is denied.
    System.UnauthorizedAccessException: Access to the path 'E:\Logs\ULS' is denied.
    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
    at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost)
    at System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost)
    at ServiceLogWriter.Service1.Compose()
    I then tried this with my Farm account. For TEST purposes, I TEMPORARILY put this account in the local Administrators group (I removed it after the test). And
    STILL does not see the E: drive or any folders it contains.
    [8/22/2014 12:05:08 PM] - Error writer is initialized and ready. Execution context svc_SPFarm_J
    [8/22/2014 12:05:08 PM] - Quick test to look for things we KNOW exist on the Server. We know there is an E: drive, and we know there's a folder named E:\Logs\ULS.
    [8/22/2014 12:05:08 PM] - Windows reports E:\ does not exist. This is bad.
    [8/22/2014 12:05:08 PM] - Windows reports E:\Logs does not exist. This is very bad.
    [8/22/2014 12:05:08 PM] - Windows reports E:\Logs\ULS does not exist. In the words of the late Captain Phil Harris, "This is bad. This is bad bad."
    [8/22/2014 12:05:08 PM] - Directory E:\Logs\ULS does not exist (we'll try to create it).
    [8/22/2014 12:05:08 PM] - Failed to set up the log writer. Access to the path 'E:\Logs\ULS' is denied.
    System.UnauthorizedAccessException: Access to the path 'E:\Logs\ULS' is denied.
    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
    at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost)
    at System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost)
    at ServiceLogWriter.Service1.Compose()
    Next I tried my own ID to run the same service. I'm a Domain Admin so I should have ruler of the roost perms 
    [8/22/2014 12:12:35 PM] - Error writer is initialized and ready. Execution context sawyemat
    [8/22/2014 12:12:35 PM] - Quick test to look for things we KNOW exist on the Server. We know there is an E: drive, and we know there's a folder named E:\Logs\ULS.
    [8/22/2014 12:12:35 PM] - Windows reports E:\ does not exist. This is bad.
    [8/22/2014 12:12:35 PM] - Windows reports E:\Logs does not exist. This is very bad.
    [8/22/2014 12:12:35 PM] - Windows reports E:\Logs\ULS does not exist. In the words of the late Captain Phil Harris, "This is bad. This is bad bad."
    [8/22/2014 12:12:35 PM] - Directory E:\Logs\ULS does not exist (we'll try to create it).
    [8/22/2014 12:12:35 PM] - Failed to set up the log writer. Access to the path 'E:\Logs\ULS' is denied.
    System.UnauthorizedAccessException: Access to the path 'E:\Logs\ULS' is denied.
    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
    at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost)
    at System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost)
    at ServiceLogWriter.Service1.Compose()
    Mind you I'm starting and stopping the service while logged in interactively -- I can CLEARLY SEE there's an E: drive and E:\Logs\ULS folder!
    It is quite evident to me that there is a policy blocking Windows services from seeing the E:
    drive.
    Run this under the LocalSystem (SYSTEM) account, and all is well.
    [8/22/2014 12:15:18 PM] - Error writer is initialized and ready. Execution context SYSTEM
    [8/22/2014 12:15:18 PM] - Quick test to look for things we KNOW exist on the Server. We know there is an E: drive, and we know there's a folder named E:\Logs\ULS.
    [8/22/2014 12:15:18 PM] - So far so good - Windows reports E:\ exists.
    [8/22/2014 12:15:18 PM] - Windows reports E:\Logs exists.
    [8/22/2014 12:15:18 PM] - Awesome - Windows reports E:\Logs\ULS exists.
    [8/22/2014 12:15:18 PM] - Log writer is set up successfully.
    [8/22/2014 12:15:25 PM] - Shutdown in progress.

  • I have a version Adobe pro 7, my old computer hard drive failed tried to install on my Windows 8.1, will not start up error message

    I have a version Adobe pro 7.1, my old computer hard drive failed, tried to install on my Windows 8.1, will not start up get error message? any solutions?  It worked perfectly fine on my old computer which was windows 7.0

    Hey,
    I am sorry but Acrobat 7 is not at all compatible with Windows 8. For this, you will need to upgrade your Adobe Acrobat version.
    For better understanding, please refer this kb file:
    Compatible web browsers and PDFMaker applications
    Regards,
    Anubha

  • How can i format an external drive so as to read and write from both windows and mac side

    i recently bought a macbook pro and used bootcamp so as to be able to run win7 and mac. I now wish to have an external drive so as to backup and tranfer files between the two os's. Specifically to read and write form either windows or mac. How can I do this?              

    Format it as FAT.

  • Can't write to external hard drive set up by Windows

    We have a 300gb Maxtor external hard drive. I had set it up using the Windows laptop I use for work.
    The Mini that we have can read, but not write to, this external drive. I just went back and set the Security properties to allow Full Control for the Everyone group. That did not work; the drive is still read-only for the Mini.
    Additionally, when it's hooked up to the Mini, the hard drive starts spinning for no apparent reason. When it's doing that, you cannot eject the hard drive. It will whir for several minutes; at times, we've had to reboot the Mini to get the thing to stop.
    Is there a Mac OS setting somewhere that needs to be changed to allow the Mini to write to the drive?
    Why is the drive spinning for no apparent reason? Is there something we can look at to find out what's happening with it?
    Any other suggestions for fixing the problem? I'd like to avoid reformatting it, if possible....

    We have a 300gb Maxtor external hard drive. I had set
    it up using the Windows laptop I use for work.
    The Mini that we have can read, but not write to,
    this external drive. I just went back and set the
    Security properties to allow Full Control for the
    Everyone group. That did not work; the drive is still
    read-only for the Mini.
    Sounds like the drive is formatted in NTFS. Under OSX, your Mac will be able to read, but not write, to an NTFS formatted drive.
    If you format as HFS or HFS+, the Mac will be able to readd/write to the disk, but the Windows box will not be able to recognize the disk.
    Since it is a 300gb drive, FAT will not work (FAT does not recognize drives that large).
    It must be formatted as FAT32.
    It can be formatted as such on either the windows box or the Mac.
    You can partition the disk, one HFS+, one FAT32, but the windows box still will not be able to recognize the HFS partition, and the Mac will be able to read/write both.
    So...for maximum compatibility and cross-platform usage, format the drive as FAT32.
    As for as the periodic drive spin, it's possible Spotlight is updating it's index.

  • I'm trying to write a very simple window

    I'm trying to write a system status window that allows me to use HTML and which can be updated as the system performs various tasks. This seems like such a trivial task that I cannot believe it's so baffling. I'd like to do this without needing ten thousand different SWING components, functions, factories, and what not that might be useful if I were trying to write every interface in the world.
    Help!

    What is wrong with a JEditorPane?

  • Can't write on my cd drive

    For the last couple of weeks, I have been unable to write on my cd drive. I can read from them, just not write.   I have tried different cd's, same problem.  I have a HP Pavilion dv2500.  It was loaded with Vista, but I hve since upgraded to Windows 7.  Ideas?

    Try to burn the CD/DVD using some other burning software/application. You may use the Nero Free Application:
    http://www.nero.com/eng/downloads-nero9-free.php

  • KM Windows Drive

    Hi,
    We are trying to create a new file system repository on our Portal (EP 7.0 SPS 12)
    server, which isUNIX based and the file system repository is Windows
    based.
    The reference document we are following is:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/content.htm
    We first create a windows file system with the read/write/execute
    permission for all. Then we created the file system repository with
    property search manager, security manager and ACL manager cache.
    We also create a network path under global services -> network paths. However
    when we look at the component monitor, we see "Startup Error: getting
    mapped math - Failed to connect to server".
    Any ideas?
    Thanks.
    -Deepu

    Hi Deepu,
    weather using WK2Security Manger or using ACL Security Manager is only a question if the portal or windows owned the permission.
    Your mistake is in your configuration of the network path (which belongs to the global services).
    “Use jCIFS” mus be activated. This is the first important option.
    The network path must be accessed and the user and password must be valid.
    You can verify this by accessing the windows drive using the network path and user/pwassword at operation system level. Perhaps you have to adjust your mount point at unix side.
    Best Regards
    Frank

  • Can't write to a Windows formatted external hard disk

    I moved the Windows XP formatted external hard disc from the Windows machine to the Imac. I can read files on the hard disc, can write from the external to the Mac, and can work with the files once they are on the Mac. But I cannot write to the external. I lack permission, the error message says.
    I talked with Apple via my AppleCare arrangement. They tell me I will have to reformat the disc for the Mac before I can write to it.
    The problem with the recommendation is that that disc, 160 gb, is over three-quarters filled with backup files for the home network. I can't afford to lose them.
    The puzzle is that the network sharing is uneven. So I'm led to think there is some problem with my setup. From the Mac, I can read and write to two Windows computers and the internal hard disc, the C drive, of the third. When the external hard disc was attached to that third computer, I was never able to see it from the Mac.
    None of the Windows machines can see the Mac.
    Any suggestions?
    John
    IMac Intel Core Duo   Mac OS X (10.4.6)  

    When you go over a network, the Mac doesn't have to worry about writing to the destination disk, it just sends the appropriate TCP/IP packets and lets the PC that is serving the disk worry about writing to the disk. When the disk is connected directly, then the Mac has to know all about writing to that file system.
    It does seem to me that if Apple could read from the drive, they should be able to write to it, but apparently that was more complicated and they didn't implement it.
    As for the windows boxen not being able to see the Mac... have you considered installing Bonjour for Windows onto the PCs? My wife has PCs and I have Macs, but we're all networked together. We were having some networking issues, trying to share printers. So I had her install Bonjour on one of her boxes. Suddenly, all our networking problems went away. She could see my printers, and all my drive shares.
    So you might want to think about turning thinga around and serving off of the Mac.
    Doc

  • Trying to write a Listener on a CheckBox to change the Model of a ComboBox

    I am trying to change the list that appears in a ComboBox dynamically based on if a CheckBox is selected or not. I have multiple CheckBoxes and ComboBoxes being created in a loop based on a variable assigned at creation. Every tutorial i have seen writes out a listener that explicitly defines the checkbox instance but in my case i don't acctually know. My checkboxes are in an array of checkboxes as are the comboboxes as they are being created at runtime. Any help would be much apreciated this issue has been with me for two days now.

    here is a snippit of my code in how i was implementing this:
    int numButton = 17; //this is for testing only, this variable is set from another class normally
    // these variables are defined private elsewhere in the class
    JCheckBox PlayerByeCheck[] = new JCheckBox[numButton + 1];
    JCheckBox PlayerHomeCheck[] = new JCheckBox[numButton + 1];
    boolean PlayerOnBye[] = new boolean[numButton + 1];
    for (int i = 1; i <= numButton; i++) {
             PlayerByeCheck[i] = new JCheckBox();
         PlayerHomeCheck[i] = new JCheckBox();
         PlayerOnBye[i] = false;
    // more code here for building the gui it is not important for this problem
    // code to build the list starts here
    for (int i = 1; i <= numButton; i++) {
         ((TableLayout)PlayerRosterPanel.getLayout()).insertRow(1, TableLayout.PREFERRED);
             PlayerByeCheck.setOpaque(false);
         PlayerByeCheck[i].addItemListener(this);
         PlayerByeCheck[i].setName("PlayerByeCheck" + i);
         PlayerRosterPanel.add(PlayerByeCheck[i], new TableLayoutConstraints(2, 1, 2, 1, TableLayoutConstraints.CENTER, TableLayoutConstraints.FULL));
    //the comboox that i want to change
    //---- PlayerTeamSelect1 ----
         if (PlayerOnBye[i] = true) {
              PlayerTeamSelect[i].setModel(new DefaultComboBoxModel(new String[] {
                   "ARI",
                   "ATL",
                   "BAL",
              "BUF",
         "BYE"
              PlayerTeamSelect[i].setSelectedItem("BYE");
         } else {
              PlayerTeamSelect[i].setModel(new DefaultComboBoxModel(new String[] {
                   "ARI",
                   "ATL",
                   "BAL",
                   "BUF",
                   "CAR",
              "BYE"
         PlayerTeamSelect[i].setOpaque(false);
         PlayerRosterPanel.add(PlayerTeamSelect[i], new TableLayoutConstraints(4, 1, 4, 1, TableLayoutConstraints.FULL, TableLayoutConstraints.FULL));
    //more gui code here method gets closed
    //Item Action Listener starts here this is where i am having the problem                         
    public void itemStateChanged(ItemEvent e) {
         Object source = e.getItem();
         if (source == PlayerByeCheck[1])
         int select = e.getStateChange();
              if (select == ItemEvent.SELECTED)
              PlayerOnBye[1] = true;
    PlayerRosterPanel.repaint();
    //repaint the window i think can't get the listener to work to see if this is the right way to do this
    //i doubt it is
    I have tried several different ways to write the listener, the example in the code above is following the java swing tutorial by explicitly defining the checkbox. I have tried to write the listener as i am creating the checkbox, which doesn't seem to work or i am wrting it wrong, which is entirely possible. Once the listener sets the value i think it should repaint the screen but i am sure that that is wrong right now as well. As my hunch is the repaint will reset the checkbox to DESELCTED the default value. I will come to that issue once i figure out how to get the listener working. Ideally i want to be able to set the listener for the checkboxes regardless as to how many there are. As stated above i am generating a list of checkboxes, comboboxes and other fields based on a variable that is defined in one of my objects. If the user selects checkbox 3 than combobox 3 should be changed, and the others should not. if the user selects all the checkboxes than all the comboboxes change.
    thanks for any help. Still plugging along on it trying to figure this one out.

  • Trying to install iTunes on Windows 8.1.  Apple Application Support was not found.  Error 2.  Uniinstall iTunes and try again, does not work.  Is there a fix?

    Trying to install iTunes on Windows 8.1.  Apple Application Support was not found.  Error 2.  Uniinstall iTunes and try again, does not work.  Is there a fix?

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • I receive the following error message when trying to install QuickTime for Windows "Error writing to file C:/Program Files/QuickTime/QTSystems/QuickTimeCheck.ocx. Verify that you have access to that directory."

    I recieve the following error message when trying to install Quicktime for Windows "Error writing to file C:/Program Files/QuickTime/QTSystems/QuickTimeCheck.ocx. Verify that you have access to that directory."  I just trying to get the latest version of iTunes.  Thanks

    "Error writing to file C:/Program Files/QuickTime/QTSystems/QuickTimeCheck.ocx. Verify that you have access to that directory."
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • Windows drive no longer available at power up with Option key?

    I've done a byte to byte copy of a separate disk drive (320GB) that was my Vista x64 bootcamp drive. (In a MacPro) to a new 750GB drive. After I completed the copy process, I pulled out the 320GB drive and put in the 750GB drive. I hold down the "Option" key during power on and expected to see both my Mac drive and my Windows drive boot option. Unfortunately I only see the Mac now.
    If I go into OSX I can see my Bootcamp drive on my desktop (Untitled), can open it and see that all my windows files are there. So what am I missing to get my bootcamp drive to show up during the power on Option process?
    Thanks, Rob.

    RAID is destination for dmg image file.
    But tried it again using a single Mac HD boot drive just to eliminate that possibility. Got the same error:
    ====Cloning NTFS filesystem to compressed dmg=======
    hdiutil create -puppetstrings -srcdevice "/dev/disk1s1" "/Users/robainscough/Documents/Untitled.winclone/Windows" 1>&2
    PERCENT:0.000000
    MESSAGE:Preparing imaging engine…
    diskimages-helper(424,0x100781000) malloc: * error for object 0x1021108d0: pointer being freed was not allocated
    * set a breakpoint in mallocerrorbreak to debug
    hdiutil: create failed - No child processes
    return value of hdiutil create -puppetstrings -srcdevice "/dev/disk1s1" "/Users/robainscough/Documents/Untitled.winclone/Windows" 1>&2 is 256
    hdiutil create -puppetstrings -srcdevice "/dev/disk1s1" "/Users/robainscough/Documents/Untitled.winclone/Windows" 1>&2 did not complete successfully
    cleaning up: Mounting Disk
    Volume (null) on /dev/disk1s1 mounted
    Sun Jan 3 15:03:14 PST 2010
    Since WinClone is freeware, I really wasn't expecting much. Does anyone know of any other tools that will get the job done?
    Thanks, Rob.

  • HT1420 I have set up iTunes Match on only 3 devices (my Windows 7 desktop and 2 iPhones) and am now trying to authorise my new Windows 8 (Toshiba) laptop but I keep failing to authorise the laptop using my one-and-only Apple ID. Does anyone have advice to

    I have set up iTunes Match on only 3 devices (my Windows 7 desktop and 2 iPhones) and am now trying to authorise my new Windows 8 (Toshiba) laptop but I keep failing to authorise the laptop using my one-and-only Apple ID. Does anyone have advice to solve this problem?!

    Hi all.  I can’t tell you how to solve your iCloud 3.x issues.  Heck, I don’t think they’re even solvable.
    But if you had a previous version of iCloud that was working correctly then I can definitely tell you how to solve the “iCloud Photo Stream is not syncing correctly to my Windows 7 PC” problem.  …without even a re-boot.
    Log out of iCloud 3.0 and uninstall it.
    Open My Computer and then open your C:\ drive.  Go to Tools/Folder Options and click on the View tab.  Select the “Show hidden…” radio button and click on OK.
    Open the Users folder.
    Open your user folder
    Open ProgramData (previously hidden folder)
    Open the Apple folder – not the Apple Computer folder.
    Open the Installer Cache folder
    In Details view sort on Name
    Open the folder for the newest entry for iCloud Control Panel 2.x – probably 2.1.2.8 dated 4/25/2013
    Right click on iCloud64.msi and select Install.
    When finished, the synching between iCloud and your PC will be back to working perfectly as before the 3.0 fiasco.  The pictures will be synched to the same Photostream folder as before the “upgrade”.  Now all you need to do is wait until Apple/Microsoft get this thing fixed and working before you try the 3.x upgrade again.
    I think the iCloud 3.0 software was written by the same folks who wrote healthcare.gov with the main difference being that healthcare.gov might eventually be made to work.
    For those of you who hate to go backwards, think of it as attacking to the rear.  Which would you rather have, the frustration of no synching or everything working on an older version?
    Good luck…

  • HT1553 I did the back up as instructed... Installed a larger hard drive and followed the restore instructions... Now I get a white screen with a folder icon and blinking question mark. When trying to set startup with new drive I get a bless tool error...

    I did the back up as instructed... Installed a larger hard drive and followed the restore instructions... Now I get a white screen with a folder icon and blinking question mark. When trying to set startup with new drive I get a bless tool error... Help!!

    If you have installed a new hard drive , you will need to have formatted it in Disk Utility correctly. This may explain your problem.
    Boot  into your 10.6 Install disk again at the top menubar > Utilities > select Disk utility and in there select your new hard drive, and select the tab Erase and choose to make the format as  Mac OS Extended Journaled. When that is finished look in the main window to make sure that the partition map scheme says GUID Partition Table.
    Now go to the Restore tab and reinstall from your backup.

Maybe you are looking for