Windows 7 and Onedrive - Can files be accessd directly without sync

My client is using Office 365 with Onedrive for business. We have mostly Windows 7 machines.  I installed the Onedrive app on a Win 7 pro machine.  Is there a way to share files directly, not offline, so syncing does not occur and save files locally? 
We have over 400 GB of files that can't be synced down to the local machine.  Also, setting up file privileges for each file would be impossible.  This looks possible in Windows 8.1 but we will be migrating later.  Basically, I want to duplicate
the functionality of our local shared folder running on our Windows server.  That is what our folks want.  I don't see any settings in the Windows 7 app that would allow this
Thanks,
- Larry

Hi,
Currently OneDrive for Business sync client can't work as your requirement, local files are needed to sync.
In Windows 8.1 it's possible for OneDrive for Business work as you expect via the Modern UI App, but in Windows 7 no such Apps can be used.
Regards,
Melon Chen
Forum Support
Come back and mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback on our support, please click
here

Similar Messages

  • I have just dowloaded iTunes new version 10.4 (on Windows), and I can't paste artwork from Word anymore, only directly from the net (where the size or the quality are not always optimal). Any way around this?

    I have just dowloaded iTunes new version 10.4 (on Windows), and I can't paste any artwork from Word anymore, only directly from the net (where the size or the quality of the images is not always optimal). Major problem given that I'm in the process of re-ripping some 40K+ songs in Lossless format... Any way around this?

    Peter Hah
    After spending another two days on pinning down the iTunes 10.5 blank store page problem, here's the solution to be found: https://discussions.apple.com/thread/3372617?start=0&tstart=0
    Look out for "japiohelp".
    In short:
    a) press Windows key + "R", enter "cmd", and press Ctrl+Shift+Enter (= runs as admin)
    b) enter "netsh winsock reset" and pres enter
    c) reboot the computer
    and Bob's your uncle.
    P.

  • Create Zip File In Windows and Extract Zip File In Linux

    I had created a zip file (together with directory) under Windows as follow (Code are picked from [http://www.exampledepot.com/egs/java.util.zip/CreateZip.html|http://www.exampledepot.com/egs/java.util.zip/CreateZip.html] ) :
    package sandbox;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    * @author yan-cheng.cheok
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // These are the files to include in the ZIP file
            String[] filenames = new String[]{"MyDirectory" + File.separator + "MyFile.txt"};
            // Create a buffer for reading the files
            byte[] buf = new byte[1024];
            try {
                // Create the ZIP file
                String outFilename = "outfile.zip";
                ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
                // Compress the files
                for (int i=0; i<filenames.length; i++) {
                    FileInputStream in = new FileInputStream(filenames);
    // Add ZIP entry to output stream.
    out.putNextEntry(new ZipEntry(filenames[i]));
    // Transfer bytes from the file to the ZIP file
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    // Complete the entry
    out.closeEntry();
    in.close();
    // Complete the ZIP file
    out.close();
    } catch (IOException e) {
    e.printStackTrace();
    The newly created zip file can be extracted without problem under Windows, by using  [http://www.exampledepot.com/egs/java.util.zip/GetZip.html|http://www.exampledepot.com/egs/java.util.zip/GetZip.html]
    However, I realize if I extract the newly created zip file under Linux, using modified version of  [http://www.exampledepot.com/egs/java.util.zip/GetZip.html|http://www.exampledepot.com/egs/java.util.zip/GetZip.html] . The original version doesn't check for directory using zipEntry.isDirectory()).public static boolean extractZipFile(File zipFilePath, boolean overwrite) {
    InputStream inputStream = null;
    ZipInputStream zipInputStream = null;
    boolean status = true;
    try {
    inputStream = new FileInputStream(zipFilePath);
    zipInputStream = new ZipInputStream(inputStream);
    final byte[] data = new byte[1024];
    while (true) {
    ZipEntry zipEntry = null;
    FileOutputStream outputStream = null;
    try {
    zipEntry = zipInputStream.getNextEntry();
    if (zipEntry == null) break;
    final String destination = Utils.getUserDataDirectory() + zipEntry.getName();
    if (overwrite == false) {
    if (Utils.isFileOrDirectoryExist(destination)) continue;
    if (zipEntry.isDirectory())
    Utils.createCompleteDirectoryHierarchyIfDoesNotExist(destination);
    else
    final File file = new File(destination);
    // Ensure directory is there before we write the file.
    Utils.createCompleteDirectoryHierarchyIfDoesNotExist(file.getParentFile());
    int size = zipInputStream.read(data);
    if (size > 0) {
    outputStream = new FileOutputStream(destination);
    do {
    outputStream.write(data, 0, size);
    size = zipInputStream.read(data);
    } while(size >= 0);
    catch (IOException exp) {
    log.error(null, exp);
    status = false;
    break;
    finally {
    if (outputStream != null) {
    try {
    outputStream.close();
    catch (IOException exp) {
    log.error(null, exp);
    break;
    if (zipInputStream != null) {
    try {
    zipInputStream.closeEntry();
    catch (IOException exp) {
    log.error(null, exp);
    break;
    } // while(true)
    catch (IOException exp) {
    log.error(null, exp);
    status = false;
    finally {
    if (zipInputStream != null) {
    try {
    zipInputStream.close();
    } catch (IOException ex) {
    log.error(null, ex);
    if (inputStream != null) {
    try {
    inputStream.close();
    } catch (IOException ex) {
    log.error(null, ex);
    return status;
    *"MyDirectory\MyFile.txt" instead of MyFile.txt being placed under folder MyDirectory.*
    I try to solve the problem by changing the zip file creation code to
    +String[] filenames = new String[]{"MyDirectory" + "/" + "MyFile.txt"};+
    But, is this an eligible solution, by hard-coded the seperator? Will it work under Mac OS? (I do not have a Mac to try out)
    p/s To be honest, I do a cross post at  [http://stackoverflow.com/questions/2549766/create-zip-file-in-windows-and-extract-zip-file-in-linux|http://stackoverflow.com/questions/2549766/create-zip-file-in-windows-and-extract-zip-file-in-linux] Just want to get more opinion on this.
    Edited by: yccheok on Apr 26, 2010 11:41 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Your solution lies in the File.separator constant; this constant will contain the path separator that is used by the operating system. No need to hardcode one, Java already has it.
    edit: when it comes to paths by the way, I have the bad habit of always using the front slash ( / ). This will also work under Windows and has the added benefit of not needing to be escaped.

  • TS3648 great, but my MBA did not come with an installion disc, only a tiny jump drive that is not recognized by windows; and I can't get the contents of that burned to a DVD either. So how the heck do I get the drivers into Windows 7? My MBA has bootcamp

    great, but my MBA did not come with an installion disc, only a tiny jump drive that is not recognized by windows; and I can't get the contents of that burned to a DVD either. So how the heck do I get the drivers into Windows 7? My MBA has bootcamp 3.0.4.

    Here's what I get:
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
    inet 127.0.0.1 netmask 0xff000000
    inet6 ::1 prefixlen 128
    inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
    gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    stf0: flags=0 mtu 1280
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 00:11:24:7d:e7:1e
    media: autoselect (none) status: inactive
    supported media: none autoselect 10baseT/UTP <half-duplex> 10baseT/UTP <full-duplex> 10baseT/UTP <full-duplex,hw-loopback> 100baseTX <half-duplex> 100baseTX <full-duplex> 100baseTX <full-duplex,hw-loopback>
    en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    inet6 fe80::211:24ff:fe28:2e71%en1 prefixlen 64 scopeid 0x5
    inet 169.254.115.141 netmask 0xffff0000 broadcast 169.254.255.255
    ether 00:11:24:28:2e:71
    media: autoselect status: active
    supported media: autoselect
    fw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 2030
    lladdr 00:11:24:ff:fe:7d:e7:1e
    media: autoselect <full-duplex> status: inactive
    supported media: autoselect <full-duplex>

  • All my hard drives (internal and external) have a small lock in the lower left corner of the icon and I don't have permissions to access. Permissions are set to 'Custom' in the get info window and I can't change them.

    All my hard drives (internal and external) have a small lock in the lower left corner of the icon and I don't have permissions to access. I have 3 user accounts set up and I cannot access any of them.   Permissions are set to 'Custom' in the get info window and I can't change them. Originally I had Snow Leopard installed on one hard drive and 10.5.8 installed on another.   I started to have some problems accessing data between them and so I tried changing the permissions on ONE hard drive partition.   The next thing I know, all my drives are locked (except the ones with the systems on them), the small lock appeared in the lower left corner of the drive icons and I don't have permissions to access any of them.   In the get info window, permissions are set to 'Custom' and I can't change them.

    There is suddenly a lock icon on my external backup drive!
    Custom Permissions

  • I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location?

    I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location? If I use add file / folder to library, it scans the folder and then makes a copy of any file that is not in my library in the exact same location; I recal in older versions of iTunes being able to just drag my media folder into my library and it would update missing links.

    Only the songs that are connected to iTunes will be copied when you consolidate to a new folder.
    Splitting the media folder away from the usual location makes it harder to move iTunes in the future.
    Are you go move everything back once you've tidied up or are you going to leave it that way? Either way I'd recommend you create an iTunes folder at the new location, an iTunes Media folder inside that, and consolidate to this new iTunes Media folder. You should also use the option File > LIbrary > Organize Library > Rearrange files in the folder "<Media Folder"> if you have not already done so.
    tt2

  • Hi - I'm trying to sync iBooks on my Macbook Pro with iBooks running on my iPad. I have some pdf's download from the net I want to share between devices and I can't work out how to sync the two devices. Any help please?

    Hi - I'm trying to sync iBooks on my Macbook Pro with iBooks running on my iPad. I have some pdf's download from the net I want to share between devices and I can't work out how to sync the two devices. Any help please? I'm running Mavericks

    Thanks for your help Brij011 - much appreciated. Apologies as I'm a newbie but I've looked at the info for synching and I appear to have all the switches flicked on my iPad. Does the iPad and iBooks only sync in iCloud for purchases as I appear to be doing something wrong. I could sync ok when books was in iTunes but since migrating to Mavericks I think I'm doing something wrong!!

  • I synced my iPhone pictures onto my laptop and i can not find them now, i synced my iPhone pictures onto my laptop and i can not find them now

    i synced my iPhone pictures onto my laptop and i can not find them now, i synced my iPhone pictures onto my laptop and i can not find them now

    You mean you imported or transferred photos from your iPhone's Camera Roll with your computer?
    If so, what did you use on your computer for the import?

  • My iPhone says I can't buy thing without entering security questions which I have forget and I can't change rescue email without my security questions????

    My iPhone says I can't buy thing without entering security questions which I have forget and I can't change rescue email without my security questions????

    Then you aren't looking closely enough.
    https://discussions.apple.com/message/21396255#21396255
    https://discussions.apple.com/message/22492054#22492054
    https://discussions.apple.com/message/21098869#21098869
    https://discussions.apple.com/message/20648647#20648647
    Shall I go on?
    Anyways, his question was already answered, AND there are DOZENS of threads where the same question is answered previously.

  • Ubuntu, Windows, and iTunes can't see my iPod. What can I do?

    I have an iPod 5g and i have been messing around with it and i discovered the problem of iTunesLock preventing me from accessing the iPod and putting itself back on. Well in a stroke of genius I deleted the Play Counts and iTunesLock files also trying to see if that would stop iTunesLock from reappearing every time i plug in my iPod.
    Now my computer (running Ubuntu 7.10) does not see it at all. Also windows does not see it, until i remove it then it says my iPod is corrupted, but when i connect it, iTunes denies any knowledge of seeing it.
    I tried to use this website to help and it did nothing for me.
    http://www.macworld.com/article/38851/2004/09/trubipod.html
    Right now when i turn it on it shows the "Connect to computer. Use iTunes to restore iPod."
    then it goes into disk mode. Strangely, even in disk mode neither windows nor Linux can see it.
    I went into the diagnostics menu and everything seems to check out fine.
    i know there is a .Trash-matthew file on the iPod and i have a great suspicion that if i can get on the iPod and see the hidden files then i could just put the file back.
    Also BIOS does see it so I don't think its completely bricked yet.
    I am using linux but I have access to Windows Vista. So I can work in either format.
    for those versed in Linux here are some commands and their outputs for you to use:
    This is the immediate output of dmesg
    [CODE]matthew@matthew-laptop:~$ dmesg | tail
    [ 4127.628000] scsi 9:0:0:0: Direct-Access Apple iPod 1.62 PQ: 0 ANSI: 0
    [ 4127.632000] sd 9:0:0:0: [sdb] 58605120 512-byte hardware sectors (30006 MB)
    [ 4127.632000] sd 9:0:0:0: [sdb] Write Protect is off
    [ 4127.632000] sd 9:0:0:0: [sdb] Mode Sense: 68 00 00 08
    [ 4127.632000] sd 9:0:0:0: [sdb] Assuming drive cache: write through
    [ 4127.632000] sd 9:0:0:0: [sdb] 58605120 512-byte hardware sectors (30006 MB)
    [ 4127.636000] sd 9:0:0:0: [sdb] Write Protect is off
    [ 4127.636000] sd 9:0:0:0: [sdb] Mode Sense: 68 00 00 08
    [ 4127.636000] sd 9:0:0:0: [sdb] Assuming drive cache: write through
    [ 4127.636000] sdb:
    [/CODE]
    This is the output of dmesg after it has been connected for like 5 or 10 minutes
    [CODE]matthew@matthew-laptop:~$ dmesg |tail
    [ 9694.884000] Buffer I/O error on device sdb, logical block 0
    [ 9775.112000] sd 19:0:0:0: [sdb] Result: hostbyte=DID_ERROR driverbyte=DRIVEROK,SUGGESTRETRY
    [ 9775.112000] end_request: I/O error, dev sdb, sector 0
    [ 9775.112000] Buffer I/O error on device sdb, logical block 0
    [ 9853.396000] sd 19:0:0:0: [sdb] Result: hostbyte=DID_ERROR driverbyte=DRIVEROK,SUGGESTRETRY
    [ 9853.396000] end_request: I/O error, dev sdb, sector 0
    [ 9853.396000] Buffer I/O error on device sdb, logical block 0
    [ 9933.328000] sd 19:0:0:0: [sdb] Result: hostbyte=DID_ERROR driverbyte=DRIVEROK,SUGGESTRETRY
    [ 9933.328000] end_request: I/O error, dev sdb, sector 0
    [ 9933.328000] Buffer I/O error on device sdb, logical block 0[/CODE]
    Realizing it wasn't mounted tried to mount it and got this response:
    [CODE]matthew@matthew-laptop:~$ sudo mount /media/sdb
    [sudo] password for matthew:
    mount: can't find /media/sdb in /etc/fstab or /etc/mtab[/CODE]
    I tried to fdsk it and got this:
    [CODE]matthew@matthew-laptop:~$ sudo fdisk /dev/sdb
    last_lba(): I don't know how to handle files with mode 40755
    You will not be able to write the partition table.
    Unable to read /dev/sdb[/CODE]
    The last thing that I tried was mkfs.vfat /dev/sdb2:
    [CODE]matthew@matthew-laptop:~$ mkfs.vfat /dev/sdb2
    mkfs.vfat 2.11 (12 Mar 2005)
    ]/dev/sdb2: No such file or directory[/CODE]
    Any input would help would be greatly appreciated.

    Try these:  iPhone, iPad, or iPod touch: Device not recognized in iTunes for Mac OS X, http://support.apple.com/kb/TS1591

  • Windows and itunes can now see my ipod!!

    Hi
    Chris... any anyone else interested
    I have managed to get my ipod to work with windows and itunes. but at a cost. some of my music and movies will not coppy back ontot he ipod and chkdsk of C:\ showed many errors in the itunes directory. these files worked previously so my conclusion is that updating has somehow corrupted files and ipod update software on the ipod itself.
    Heres what i had to do
    1. My pod was showing version 1.0 even though I had version 1.2 previously. this may have been due to the attempt at a re-set from advice given on the forum for trying to get reconnection (5R's) so i wanted to re-run updater.
    2. ipod updater (found in C:\program files\ipod) could not run due to previous topics posted (ipod ejected after 10 seconds without update and drive diappears from 'my computer'). so...I uninstalled itunes 7.2, and reinstalled itunes 6. To do this I had to rename my current library 'itunes 7.02 old' to avoid the 'itunes cannot continue to install as your library was created in a later version' error message.
    3. Itunes 6 still did not recognise itunes and kicked it off windows too just like before. The difference was however that this time running ipod updater from C:\program files\ipod\.... allowed it to update from the previous installer and this set the ipod back to version 1.1 but obviously during this process all items on the ipod were deleted. This update was allowed despite the drive not showing up in 'my computer'?
    4. plugging in the updated ipod opened itunes and at last the ipod icon appeared and the drive remained in windows. I updated to software version 1.2 and itunes 7.02
    5. I then went into c:\......my music\itunes and renamed the current library 'itunes' to '7.02' and my previously renamed 'itunes library 7.02 old' back to 'itunes'
    6. on restarting itunes my whole old library was reinstated.
    there were 68 problems and an empty 'movie' folder was seen as 'corrupt' by windows. CHKDSK on C drive removed any corruption. Everything else seems to be updating ok....my purchased games, movies, audio etc...
    So in summary if you are stuck in the loop of being unable to restore an old itunes due to having a new library or not being able to use the previous ipod updater to restore your ipod follow the steps above and all should be ok.
    this does not solve the cause however so any comments on what may have happened would be most appreciated.
    Matt/Alan

    Hey there MattSK123,
    Thank you for your question. It sounds like you are unable to see either of your devices in the sidebar of iTunes after a recent update. A number of issues could cause this type of behaviour, and would recommend starting with the troubleshooting from the article named:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    If the issue is not resolved, I would next re install iTunes from either of the following articles depending on the version of Windows you have:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    Or
    Removing and Reinstalling iTunes and other software components for Windows XP
    http://support.apple.com/kb/ht1925
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • I accidently doubled my Thunderbird window and I can't have just one Thunderbirs opened. How can I erase one? Thank you!

    When I open Thunderbird I actually open it twice. How can I erase one forever?

    After closing the second window, close TB via File (Alt-F) - Exit.

  • Sharing a link to Facebook, the "share" button is not available in the window and I can't resize to access it. How do I make it work?

    I have Windows 8.1, touchscreen. When responding to an issues email that then gives me the option to share on Facebook, the resulting share window does not format so that the share button is accessible to click or press. Thus, I cannot share anything. I have tried resizing the share window, but it just jumps around and never makes the button accessible.

    I understand that the share button on Facebook jumps around. Does this also happen in safe mode?
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • I'm rebooting into my bootcamp partition (windows) and i can't finish to install lion.

    Hi, i'm andrea writing from italy
    i have a serious problem with my mac.
    i have started to install lion on my 27 ssd imac. I have a windows partition on that.
    during installation the system said to restart. then the computer started on windows.
    i have restarted again with option key pressed. then i have seen 2 different harddrive icon on the screen (windows) and lion installation
    pressing lion then the screen became gray with a denied signal on it. and start again windows.
    please help me!!!
    Andrea

    Phoenix,
    Like the others mentioned you need the 10.6.8 version to do an upgrade over your existing OS.
    Have you tried a clean install after backing up your data and erasing your HDD? I'm assuming your hardware qualifies. If your USB stick is bootable you could do a clean install with it. Or if you have the InstallESD.dmg file, burn it to DVD and perform a clean install.

  • We are trying to package our iTunes Windows and we can't stop the auto update feature.  How can we do this?

    We have consultants here packaging many of our Apps for deployment with Windows 7.  We cannot find a way to turn off the auto update feature within iTunes for Windows.  Has someone been successful in packaging iTunes for Windows and NOT do the auto update piece?

    The Apple advice revolves around the editing the registry:
    Windows OS Managed Client: How to manage iTunes control features
    ... but it's beyond my competence to advise how to work that particular registry edit into a deployment, I'm afraid.

Maybe you are looking for

  • Time Machine formatted my External HD, now it doesn't work on my PC????

    I just bought a Macbook and made the move from a PC to a Mac, I had information that was on my External Hard Drive that I wanted to transfer over to the Mac, but when I was snoopin around Time Machine I formatted it so that now only a Mac can read it

  • Tax reporting data elemnts

    Hello experts, I  am trying to document list of data elements required  for TAX reporting purposes.I understand that there are certain sap reports I wanted to capture following process.I was wondering if I can capture the data elements  to build an s

  • How to identifiy AIP-SSM-10 ot CSC-SSM-10 do I have ?

    how to identifiy AIP-SSM-10 ot CSC-SSM-10 do I have on my asa5520 ?

  • Zones and SAN

    I am planning on creating some zones on a V490 server. I would like to implement the zones feature of Solaris 10. Has anyone placed a zone on a SAN? Is it recommended to place the entire zone on the SAN or leave the sparse root on the internal disk a

  • Right Click To Combine Files

    Hi every1. This is a very small problem but one that is quite annoying to me. When I highlight 2 files (.doc,.xls etc) then right click on them, I have the option to "convert to .pdf" using professional. No worries. It works, everything is fine. It c