School who has windows servers and recently purchased iMacs with Apple svrs

Hi Folks
I like to introduce myself to the forum. My name is Ranj and I am the IT manager at Queensbridge School in Birmingham, UK.
Our school has recently purchased 44 iMacs with an Xserve and XRAID box.
We are school with mainly windows and unix servers and this reason for us buying a apple server was so we could lock the macs down using managed preferences which we have successfully done.
Our Xserve is connected to our active directory system, and from there it allows our students to login to the macs using there windows credetionals. As the apple server talks directly to AD it also connects to their home share folders.
The problem is my windows server only has a 400gb raid and my plan is to somehow migrate all the home folders from the windows 2003 server to our XRAID but am having trouble with it preserving the windows permissions.
I know that Apple can talk via SMB and if i moved the home directory data to the apple server i would still be able to see it on the windows side but am having trouble copying all the files and folders whilst keeping all the ownership and security information.
Does anyone know if there is a util or script which will allow me to do this. Has anyone successfully used robocopy (a microsoft tool) which i am familar with and managed to copy data from a windows server to an apple server.
If anyone can help me with this problem it would be most greatly appreciated.
I have to say I been a Windows user all my life but can now see why Apple Macs are a big deal, there are so much better at what they do compared to their window conterparts.
I am looking forward to the world of Apple and this forum
Thanks

Hi Ranj,
welcome on the forum.
I use the cli command rsync for it. I know colleges who use ditto or asr for it.
all programs have good man pages or help.
Regards
Donald

Similar Messages

  • HT3819 I have an iphone4s and recently purchased a 5 for my wife.  If I plug her phone into my computer will the music in my player sync into her phone?  When I connect it I'm prompted to chose set up  a new phone or backup, not sure what to do.  Her phon

    I have an iphone 4s and recently purchased a 5 for my wife.  When I plug her phone into our computer I'm asked if I want to set up as a new phone or back up. I'm not sure what to do her phone is already set up with an icloud account.  Can I sync her phone with the player that I have installed and transfer content to her phone or will my phone be removed from the player?

    Set up as new, since it newer has been connected to iTunes. Your iPhone will remain on iTunes. I have 4 different devices on my iTunes with no problems.
    And regarding the sync - it will sync whatever you tell it to sync on iTunes.

  • Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?

    Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?  Is there a demo out there that actually works in VS2012?  Is there anyone who has actually been able to compile and deploy that
    apparently obsolete Polygons demo?  (Pardon my impatience but I'm running a bit short of time here.)
    After much hacking and googling I was able to get Polygons to compile but I still can't deploy it to the toolbox.  ('The custom report item type PolygonsDesigner is not installed').   I've modified the RSReportDesigner.config
    as instructed but I have no rssrvpolicy.config file on my local machine and
    as yet I have no idea if that is necessary for local development.
    In order to get it to compile I first added the reference  C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.ProcessingCore.dll to both projects.
    To the PolygonsDesigner Project I also added the references:
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportDesigner.Controls.dll
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.Designer.11.0.dll
    C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\Microsoft.ReportingServices.Interfaces.dll
    Are these the correct references?  
    Exactly what software do you need installed on your local machine in addition to VS2012 in order to create a custom control?
    (Designer.11.0 was added per the instructions in reference: https://connect.microsoft.com/VisualStudio/feedback/details/783391/unable-to-integrate-previously-working-ssrs-custom-report-item-to-vs-2012s-toolbox  
    After that I added the alias RSDesigner to it's properties and   extern alias RSDesigner; at the top of the PolygonsDesigner.cs file. )
    As of now, the top of the PolygonsDesigner.cs is as follows.  I don't recall making any other changes to the code.  As far as I can remember this is all I did in order to be able to compile the code in VS2012.
        extern alias RSDesigner;
        using System;
        using System.ComponentModel;
        using System.ComponentModel.Design;
        using System.Collections;
        using System.Collections.Generic;
        using System.Diagnostics;
        using System.Drawing;
        using System.Windows.Forms;
        using Microsoft.ReportDesigner;
        using Microsoft.ReportDesigner.Design;
        using Microsoft.ReportingServices.Interfaces;
        using Microsoft.ReportingServices.RdlObjectModel;
        using System.Xml;
        using System.Xml.Xsl;
        using System.Xml.XPath;
        [LocalizedName("Polygons")]
        [Editor(typeof(CustomEditor), typeof(ComponentEditor))]
        [ToolboxBitmap(typeof(PolygonsDesigner), "Polygons.ico")]      
        [CustomReportItem("Polygons")]
        [ToolboxItem(typeof(RSDesigner::Microsoft.ReportDesigner.Shell.CRIToolboxItem))] 
        [System.CLSCompliant(false)]
        public class PolygonsDesigner : CustomReportItemDesigner
        {   etc...

    Just fixed this myself.
    It appears the documentation online is wrong and the sample code is missing a reference to a reporting services dll and an attribute.
    What you need to do to get it working in VS2012 is add a reference to: Microsoft.ReportingServices.designer.11.0.dll to the PolygonsDesigner project and then add the following attribute to the PolygonsDesigner class: [ToolboxItem(typeof(Microsoft.ReportDesigner.Shell.CRIToolboxItem))]
    I also removed the [System.CLSCompliant(false)] attribute.
    You then recompile and place both dlls in C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies directory and the PolygonsDesigner.dll into the C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin
    or what ever is you reporting services path.
    You also need to change the Microsoft example for the rereportserver.config file to:
        <ReportItemDesigner>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItems>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCRI,PolygonsCRI"/>
        </ReportItems>
     Notice that I changed the namespaces and class to what is in the actual code so if you change it make sure you change it here.
    And here in the RSReportDesigner.config:
    <ReportItems>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCustomReportItem,PolygonsCRI" />
        </ReportItems>
        <ReportItemDesigner>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItemConverter>
          <Converter Source="Chart" Target="Polygons" Type="PolygonsCRI.PolygonsConverter, PolygonsDesigner" />
        </ReportItemConverter>
    Notice I haven't changed the last part as I didn't know what the PolygonsCRI.PolygonsConverter was.
    And make sure the rssrvpolicy.config looks like this:
         <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust" Description="This code group grants PolygonsCRI.dll FullTrust permission. ">
           <IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\Program Files\Microsoft SQL Server\MSRS10_50.SQLSERVER\Reporting Services\ReportServer\bin\PolygonsCRI.dll" />
        </CodeGroup>
    After a restart of ssrs and relaunch of VS2012 I opened a test project and added the PolygonsDesigner.dll to the toolbox and it works.
    Jamie

  • HT201272 wait just to be sure i am not the only one who has the "term and conditions" problem

    wait just to be sure i am not the only one who has the "term and conditions" problem

    Go to Crucial.com and use one of their two methods to determine what upgrades are available for your Mac:
    I would purchase the modules from Crucial as they are very reliable and wiill work with you if you have problems.
    OT

  • I am a residential appraiser and recently purchased an ipad4 to use for my home inspections.  Some homes are foreclose without power and I am unable to get a good picture without a flash.  Does anyone know of a flash attachment for the ipad4?

    I am a residential appraiser and recently purchased an ipad 4 to use for my home inspections.  Some homes are foreclosed poperties without power and I am unable to get a good interior picture without a flash.  Does anyone know of a flash attachment for the ipad 4? I found a flash attachment for the ipad 2, but it does not work with the ipad 4.

    I'm sorry to hear that.
    I'm not affiliated w/ the developer, just a happy user that gave up fighting the apple podcast app a while ago.  I used to have a bunch of smart playlists in itunes for my podcasts, and come home every day and pathologically synced my phone as soon as I walked in the door, and again before I walked out the door in the morning.
    Since my wife was doing this too, we were fighting over who's turn it was to sync their phone.
    Since I've switched to Downcast, I no longer worry about syncing my phone to itunes at all.  I can go weeks between syncs.
    Setup a "playlist" in downcast (ex., "Commute") and add podcasts to that playlist.  Add another playlist ("walk" or "workout") and add different podcasts to that one. 
    Set podcast priorities on a per-feed basis (ex., high priority for some daily news feeds, medium priority for some favorite podcasts, lower priority for other stuff).  Downcast will play the things in the priority you specify, and within that priority, it will play in date order (oldest to newest).
    Allegedly, it will also sync your play status to other devices, although that is not a feature I currently use and can't vouch for.  It uses apple's iCloud APIs, so to some extent may be limited by what Apple's APIs can do.

  • I have a Mac. Can I download Thunderbird to a disk for a friend who has Windows?

    My friend who has Windows asked me to download Thunderbird on a disk for her. She can't download it herself because she has dial-up. I don't have Windows installed on my Mac.

    Yes, you can download Thunderbird [https://affiliates.mozilla.org/referral/58840/ here] and click "Other Systems & Languages" to get the Windows version.

  • My firefox on my lap top (with windows 7) cannot open a website with a username and password, without first clearing the history ? my other computer has windows xp and it works fine.

    My firefox on my lap top (with windows 7) cannot login to my e mail website with a username and password, without first clearing the history ? my other computer has windows xp and it works fine.

    I simply reinstalled fire fox 3.6.19 and I can login no problem. Seems like it could be a compatability problem between 5.0 and windows 7. One other thing that happened often was lag while playing mmorpg games. Not sure if this fixed it or not, but I can update this thread when i find out.
    Thank you to who ever provided the link to the older fire fox downloads page in another question thread.

  • I have some music from CDs and recent purchases from iTunes on my iPhone 4 that are not synced with my iTunes account on my computer.  How can I sync my phone and iTunes on my computer without losing what is on my iPhone?  (original computer was stolen)

    I have some music from CDs and recent purchases from iTunes on my iPhone 4 that I would like to sync with my iTunes account on my computer.  The CDs were on my original laptap also, but it was stolen and I set up the iTunes on my new computer.
    When I try to sync I get a message indicating that the iPhone iTunes will be replaced with the computer iTunes.
    How can I sync and retain both iTunes?

    Music is designed to sync in one way only, and that is from iTunes to the phone. There is the expectation that you would backup the computer to save this data. There are 3rd party solutions to try and recover music from the phone to put back into a blank iTunes library.
    See this user generated tip for help https://discussions.apple.com/docs/DOC-3141

  • I downloaded Elements 13 to my PC, but my PC has windows Vista and it does not work.  How can I download it to my laptop that has Windows 8?

    I downloaded Elements 13 to my PC, but my PC has windows Vista and it does not work.  How can I download it to my laptop that has Windows 8?

    You can get it at this link and validate with your 24 digit serial number - click here for PSE downloads

  • I have Windows 7 and recently everytime I try to update my iTunes I get an error message. Any reasons why?

    Hi! I have a PC running on Windows 7 and recently I can not upgrade my iTunes. Any reasons why?

    Many thanks, that's perfect.
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I am trying to license my recent download of Lightroom 5 onto my recently purchased Macbook with the serial number of the disk I purchased last year for my Windows PC (an upgrade from Lightroom 4).  I receive an error "The serial number you entered is inv

    I am trying to license my recent download of Lightroom 5 onto my recently purchased Macbook with the serial number of the disk I purchased last year for my Windows PC (an upgrade from Lightroom 4).  I receive an error "The serial number you entered is invalid".  Why does CC not recognize this as a valid serial number?

    Soyouca how did you install Photoshop Lightroom?  Please uninstall the current installation using the uninstaller located in Applications/Utilities/Adobe Installers.
    Once Photoshop Lightroom is removed please download a fresh copy of the installation files from Adobe - Lightroom : For Macintosh.  The update contains the full installer so please download the latest version of Photoshop Lightroom 5.
    You may be asked to enter your serial number for Photoshop Lightroom 4.  You can find information on how to locate the serial numbers under your account at Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.

  • I have an academic version of Final Cut Studio on my laptop and recently purchased the most recent Full version of Final Cut Studio. Do I need to uninstall the academic version before installing the new version?

    I have an academic version of Final Cut Studio on my laptop and recently purchased the most recent Full version of Final Cut Studio. Do I need to uninstall the academic version before installing the new version? I ask because this is not an upgrade, but a completely new version.

    I'm with Jim on this.  It always seems to work out better if you do not install over another version.  You can use this app (freeware - thanks to Jon Chappel) to completely remove ALL Final Cut Studio apps and components: http://www.digitalrebellion.com/fcsremover/
    Once that's done, install your newly purchased version.
    -DH

  • I recently purchased tunes with iTunes gift card.  I still have $ left on my card and now I'm asked to verify my account. Why is this necessary?

    I recently purchased tunes with iTunes gift card.  I still have $ left on my card and now I'm asked to verify my account. Why is this necessary?

    Because iTunes simply wants you to verify your name &amp; address is correct in your account info.

  • Recently my IMac with osx 10.4.11 has been running extremely slow. To the point where I have tried restarting.I have run Sophos antivirus software and have found nothing. Any suggestions?

    Recently my IMac with osx 10.4.11 has been running extremely slow. It takes forever for Safari to switch screens. You can hear the computer constantly working. To the point where I have tried restarting.I have run Sophos antivirus software and have found nothing. Any suggestions?

    First remove the antivirus software, it's possible that could be part of your problem! Slow Mac's can be caused by many different issues, including failing HD's, a HD that is too full (OS X really likes to have about 10-15% of the HD available), insufficient RAM, etc.. To troubleshoot your problem I'd recommend looking over 25 Ways to Speed Up Your Mac.

  • Windows 8 and itunes 11 compatibility with an ipod

    I have itunes11 and Windows 8. I've called Apple and I've talked to Microsoft. This was months ago. I can download itunes and run it from my laptop but am unable to sync my ipod. I get an error and it automatically reboots my computer. I was told there were known compatibility with itunes and Windows 8.  This was months ago.
    I know how to downgrade itunes to XP or Win 7. This is not the issue. I can download to my laptop and place, it will not sync to my ipod device (which is a fear years old), but when I did talk to support I was told that it was supported. The ipod was not the issue.. It was the incompatibility between the programs.
    I see recent updates in the support community in the past month about production resolution but this still has not resolved my issue. I don't believe purchasing a new ipod is going to resolve the issue either.
    If anyone has successfully developed a workaround or recently downloaded itunes11 w/ Windows 8 and can sync to an apple ipod I would love to know how you did it.
    Kia
    [email protected]

    Im not sure that will solve the issue I have with itunes. I have a lenovo laptop and I think it's just an issue with Apple who has to modify the program for users of Windows 8 so that itunes can be used and to find purchased music. I found the music I purchased through itunes but it's not the full tracks. It said it allows me to download it fully so I can hear the whole track, but needs some kind of capatibility? I have no idea what the problem is. If someone has the answer knowing my computer brand and having windows 8 compatibility issues, please let me know what you suggest.

Maybe you are looking for

  • Bios Flashing and Recovery

    BIOS FLASHING We do not recommend using the MSI LiveUpdate tool to update your BIOS! It may be okay for updating your drivers, but please do not use it to flash the BIOS in Windows! Windows-based flashing - If you REALLY insist on flashing the BIOS u

  • Newbie needs help!  Cannot open database home page...

    Hi all, I know this sort of question has been posted before but either it never got resolved or the thread seems to just die... I have just installed 10gXE and have tried to open the 'homepage' but all I get is 'page not available' errors in either I

  • Sometimes Tray Icon not loaded correctly

    I am trying to make my (html/ajax) website available as a desktop application, (with little enhancements like notifications in the background etc.)  without writing any extra code. Everything works fine except the tray icon. Sometimes the tray icon i

  • Is there a script to give two objects the same height ?

    The heighest object must remain. The little object has to become as high as the big one. I need this in a script. Geert.

  • Add "resume download" function to my program

    Hi,my program is more complete now,and now I want to add the resume download function,I've search on net,and here but I haven't found nothing.I use my own protocol(see this to read the source: http://forum.java.sun.com/thread.jspa?threadID=5220335 ).