List DC OS Versions and Roles in a Forest.

Hi Guys
I need to get info on all DC's in my forest, like OS version, Role, OU, What domain it resides in etc.
DSquery does not give me all the info, neither does ADUC, neither does Hyena, and powershell is not sufficient it ignores 2003 DC's.
ADUC has got me the most info so far, except i cannot export the search results to file.
Saved Queries only allows me to search one domain at a time.
I have about 100 Domains in the forest, and 1200 DC's
Any assistance will be appreciated.
Regards
Michael

I haven't had a chance to post to my Blog yet, but if you wnat to run discovery on a domain the following saved as a cmd file and using the freeware tool adFind.exe will dump a lot of results for you.
Echo off
cls
Rem --------------------------------------------------------------------------------------------------------------------------
Rem Program      - newDomain_adFind
Rem Author       - Paul Bergson
Rem Date Written - February 11, 2014
Rem Description  - Series of command lines utilizing adFind to extract information from domains (dnscmd is used to enumerate zones)
Rem                  This script must be run in the same sub-folder where adFind exists or adFind must be in the system path
Rem                  A sub-folder named domain_dump is created and a series of outputs are generated
Rem --------------------------------------------------------------------------------------------------------------------------
SET /P domainName=Please enter domain name:
md domain_dump_%domainName%
Echo Schema Version Number
AdFind -sc schver > .\domain_dump_%domainName%\schemaVersion.txt
Echo.
Echo Find Functional Levels
adfind -sc modes -nodn > .\domain_dump_%domainName%\functionalLevels.txt
Echo.
Echo Tombstone Lifetime
AdFind -config -f objectclass=ntdsservice tombstoneLifetime -nodn > .\domain_dump_%domainName%\tombstoneLifetime.txt
Echo.
Echo Password Policy
AdFind -default -s base lockoutduration lockoutthreshold lockoutobservationwindow maxpwdage minpwdage minpwdlength pwdhistorylength pwdproperties -nodn -samdc > .\domain_dump_%domainName%\passwordPolicy.txt
Echo.
Echo Find FSMO Roles
adfind -sc fsmo -nodn > .\domain_dump_%domainName%\fsmo.txt
Echo.
Echo Organizational Unit count and number at the root
Echo Organizational Unit count and number at the root > .\domain_dump_%domainName%\ad_OU.csv
adfind -f "(objectCategory=organizationalUnit)" name -nodn -csv -s tree -c >> .\domain_dump_%domainName%\ad_OU.csv
Echo. >> .\domain_dump_%domainName%\ad_OU.csv
adfind -f "(objectCategory=organizationalUnit)" name -nodn -csv -s one >> .\domain_dump_%domainName%\ad_OU.csv
Echo.
Echo Sites In Domain
Echo Sites In Domain           > .\domain_dump_%domainName%\AD_Sites.csv
adfind -sites name -nodn -csv >> .\domain_dump_%domainName%\AD_Sites.csv
Echo.
Echo Subnets In Domain
Echo Subnets In Domain                                  > .\domain_dump_%domainName%\AD_Subnets.csv
AdFind -subnets -f (objectCategory=subnet) -csv  -nodn >> .\domain_dump_%domainName%\AD_Subnets.csv
Echo.
Echo List Domain Admins
Echo List Domain Admins   > .\domain_dump_%domainName%\domain_admins.csv
adfind -default -f "name= domain admins" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\domain_admins.csv
Echo.
Echo List Enterprise Admins
Echo List Enterprise Admins > .\domain_dump_%domainName%\ent_admins.csv
adfind -default -f "name= Enterprise Admins" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\ent_admins.csv
Echo.
Echo List Admins
Echo List Admins > .\domain_dump_%domainName%\admins.csv
adfind -default -f "name= administrators" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\admins.csv
Echo.
Echo List Schema Admins
Echo List Schema Admins > .\domain_dump_%domainName%\schema_admins.csv
adfind -default -f "name= Schema Admins" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\schema_admins.csv
Echo.
Echo List DNSAdmins
Echo List DNSAdmins > .\domain_dump_%domainName%\dns_admins.csv
adfind -default -f "name= DNS Admins" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\dns_admins.csv
Echo.
Echo List Account Operator
Echo List Account Operator > .\domain_dump_%domainName%\account_operators.csv
adfind -default -f "name= Account Operators" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\account_operators.csv
Echo.
Echo List Backup Operators
Echo List Backup Operators > .\domain_dump_%domainName%\backup_operators.csv
adfind -default -f "name= Backup Operators" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\backup_operators.csv
Echo.
Echo List Print Operators
Echo List Print Operators > .\domain_dump_%domainName%\print_operators.csv
adfind -default -f "name= Print Operators" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\print_operators.csv
Echo.
Echo List Server Operators
Echo List Server Operators > .\domain_dump_%domainName%\server_operators.csv
adfind -default -f "name= Server Operators" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\server_operators.csv
Echo.
Echo List Remote Desktop Users
Echo List Remote Desktop Users > .\domain_dump_%domainName%\remote_desktop_users.csv
adfind -default -f "name= Remote Desktop Users" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\remote_desktop_users.csv
Echo.
Echo List Group Policy Creator Owners
Echo List Group Policy Creator Owners > .\domain_dump_%domainName%\gpo_creators.csv
adfind -default -f "name= Group Policy Creator Owners" member -list | adfind -bit -f "&(objectcategory=person)(objectclass=user)(!useraccountcontrol:AND:=2)" samaccountname -nodn -csv >> .\domain_dump_%domainName%\gpo_creators.csv
Echo.
Echo List Domain Controllers and Config
adfind -config -rb cn=sites -f objectcategory=ntdsdsa > .\domain_dump_%domainName%\domainControllers.txt
Echo.
Echo List Trusts  
Echo List Trusts                                       > .\domain_dump_%domainName%\trusts.csv
Echo    TrustAttributes - 0x1 (Nontransitive)         >> .\domain_dump_%domainName%\trusts.csv
Echo                    - 0x2 (Uplevel clients only)  >> .\domain_dump_%domainName%\trusts.csv
Echo                    - 0x40000 (Tree parent)       >> .\domain_dump_%domainName%\trusts.csv
Echo                    - 0x80000 (Tree root)         >> .\domain_dump_%domainName%\trusts.csv
Echo.                                                
>> .\domain_dump_%domainName%\trusts.csv
Echo.                                                
>> .\domain_dump_%domainName%\trusts.csv
Echo.   TrustDirection  - 1 (Inbound)                 >> .\domain_dump_%domainName%\trusts.csv
Echo.                   - 2 (Outbound)                >> .\domain_dump_%domainName%\trusts.csv
Echo.                   - 3 (Bidirectional)           >> .\domain_dump_%domainName%\trusts.csv
Echo.                                                
>> .\domain_dump_%domainName%\trusts.csv
Echo.                                                
>> .\domain_dump_%domainName%\trusts.csv
Echo.   TrustType       - 1 (Downlevel)               >> .\domain_dump_%domainName%\trusts.csv
Echo.   TrustType       - 2 (Uplevel)                 >> .\domain_dump_%domainName%\trusts.csv
Echo.   TrustType       - 3 (Kerberos realm)          >> .\domain_dump_%domainName%\trusts.csv
Echo.   TrustType       - 4 (DCE)                     >> .\domain_dump_%domainName%\trusts.csv
Echo.                                                
>> .\domain_dump_%domainName%\trusts.csv
Echo ------------------------------------------------ >> .\domain_dump_%domainName%\trusts.csv
Echo.                                                
>> .\domain_dump_%domainName%\trusts.csv
adfind -gcb -f objectcategory=trusteddomain trustpartner trusttype trustdirection trustattributes -samdc -csv -nodn   >> .\domain_dump_%domainName%\trusts.csv
Echo.
Echo User Count
Echo User Count           > .\domain_dump_%domainName%\userCount.txt
adFind -sc adobjcnt:user >> .\domain_dump_%domainName%\userCount.txt
Echo.
Echo Password Not Expire
Echo Password Not Expire                             > .\domain_dump_%domainName%\PasswordNotExpire.txt
adFind -sc users_noexpire -nodn -csv samAccountName >> .\domain_dump_%domainName%\PasswordNotExpire.txt
Echo.
Echo Not Required
Echo Not Required                                      > .\domain_dump_%domainName%\PasswordNotRequired.txt
adFind -sc users_pwdnotreqd -nodn -csv samAccountName >> .\domain_dump_%domainName%\PasswordNotRequired.txt
Echo.
Echo Computer Count
Echo Computer Count           > .\domain_dump_%domainName%\computerCount.txt
adFind -sc adobjcnt:computer >> .\domain_dump_%domainName%\computerCount.txt
Echo.
Echo User Count
Echo User Count           > .\domain_dump_%domainName%\userCount.txt
adFind -sc adobjcnt:user >> .\domain_dump_%domainName%\userCount.txt
Echo.
Echo List All Users
AdFind -f "objectcategory=person" -sl -csv -nodn -tdcd samAccountName displayName lastLogonTimeStamp > .\domain_dump_%domainName%\users.csv
Echo.
Echo List Computer Objects
AdFind -f "objectcategory=computer" cn operatingsystem  operatingsystemServicePack lastLogonTimeStamp -csv -nodn -tdcd > .\domain_dump_%domainName%\computers.csv
Echo Foreign Security Principals Count
Echo Foreign Security Principals Count > .\domain_dump_%domainName%\FSP.txt
adfind -fsps -c                       >> .\domain_dump_%domainName%\FSP.txt
Echo.
Echo Partitions
Echo Partitions        > .\domain_dump_%domainName%\partitions.txt
adfind -sc domainncs >> .\domain_dump_%domainName%\partitions.txt
Echo.
Echo Exchange
Echo Exchange               > .\domain_dump_%domainName%\exchange.txt
adfind -exch -nodn -csv dn >> .\domain_dump_%domainName%\exchange.txt
Echo.
Echo Group Policy
Echo Group Policy              > .\domain_dump_%domainName%\gpo.txt
AdFind -gpo displayname -nodn >> .\domain_dump_%domainName%\gpo.txt
Echo.
REM Echo DNS
REM Echo DNS              > .\domain_dump_%domainName%\dns.txt
REM dnscmd /enumzones    >> .\domain_dump_%domainName%\dns.txt
REM Echo.
Echo DC Diagnostics
Echo DC Diagnostics   > .\domain_dump_%domainName%\dcDiag.txt
dcdiag /v /c /d /e    >> .\domain_dump_%domainName%\dcDiag.txt
Echo.
Echo Replication Diagnostics
Echo Replication Diagnostics                       > .\domain_dump_%domainName%\repAdmin.txt
repadmin.exe /showrepl * /verbose /all /intersite >> .\domain_dump_%domainName%\repAdmin.txt
Echo.
Echo This has completed
Paul Bergson
MVP - Directory Services
MCITP: Enterprise Administrator
MCTS, MCT, MCSE, MCSA, Security, BS CSci
2012, 2008, Vista, 2003, 2000 (Early Achiever), NT4
Twitter @pbbergs http://blogs.dirteam.com/blogs/paulbergson
Please no e-mails, any questions should be posted in the NewsGroup.
This posting is provided AS IS with no warranties, and confers no rights.

Similar Messages

  • Lack of Office 365 (local instal) COM Automation support - need a definitive list of the versions and their support for automation.

    I develop an application that does some PowerPoint automation using embedded interop types (C# App - with VB assembly that does the office automation part)
    I've started to get reports that the PowerPoint automation is failing on Office 365.
    Here is a sample of a typical customer complaint:
    not exporting to powerpoint...
    We recently migrated from Office2007 to O365. That would be definitely the reason.
    But how can we solve this?
    I found the following reply to a forum question:
    https://social.msdn.microsoft.com/Forums/office/en-US/3c95eea4-641f-4bf0-a166-ecf33177854b/does-desktop-versions-of-applications-in-office-365-packages-support-comautomation?forum=exceldev
    But it only states that one version doesn't - and then one version does - doesn't reference a list of all support versions.
    Also - later - in that thread - it is shown that the accepted answer is actually incorrect.
    A sample of the type of code used to interact is shown here....
        Public Function PositionSlideTitle(ByVal slide As PowerPoint.Slide, ByVal height As Single, ByVal marginX As Single, ByVal marginY As Single) As PowerPoint.Shape
            Dim shapes As PowerPoint.Shapes
            Dim shape As PowerPoint.Shape
            ' get the shapes on the slide
            shapes = slide.Shapes
            ' get the shape that holds the title
            ' if the shapes collection has a title, then this title shape is always in index 1
            If shapes.HasTitle = Office.MsoTriState.msoTrue Then
                ' the title shape can also be accessed by the special property Title
                shape = shapes.Title
            Else
                ' If there was no title - then add one
                shape = shapes.AddTitle()
            End If
            ' position the shape at 0,0 (seems not to want to go there)
            shape.Left = marginX
            shape.Top = marginY
            ' stretch image to fit slide
            shape.Width = slide.Master.Width - (marginX * 2)
            shape.Height = height
            Return shape
        End Function
    The project references Microsoft.Office.Interop.PowerPoint, version 11.0.0.0 with it's "Embed Interop Types" set to true.
    This has worked for 10+ years, with all versions of office from Office 2003.  We still need the application to support Office 2003 - and it still does perfectly, so referencing newer PIA's isn't an option.
    Please help.

    Great to know that all versions of Office Support Com Automation.
    Because the end-users that have made the complaint - are using Office 365 - it wouldn't be the Click2Run edition as you've mentioned - but it's good to know that information, as I wasn't aware there was a possible issue with that - thanks.
    I'll just assume then that the end user that sent the following issue is running them with different permission level:
    not exporting to powerpoint...
    We recently migrated from Office2007 to O365. That would be definitely the reason.
    But how can we solve this?
    Although - one more thought - I read somewhere that O365 users can install office via the O365 portal - I wonder whether this is the same as Click2Run install - and hence causing the same out-of-process application error you have referred to?
    Kind Regards
    UPDATE:
    Further reading/searching on click-to-run and O365 found the following:
    I can't paste links in this forum, but:
    technet microsoft com "en-us/library/jj219427.aspx"
    Eugene - you may be onto something with the click-to-run issue - that may be the cause of the error in O365 installations - At least now I have a scenario to test against (user info is always difficult to determine exactly how to replicate issues) - Cheers.

  • List of SAP versions, Diff. between SAP versions

    Can any1 send me a list of SAP versions and whts the different between these Versions. ?

    ECC 5.0 is based on WAS 6.40 and ECC 6.0 is based on WAS 7.00.
    From functional point of view there are some minor differences, as the core functionalities are not changed a lot. However there is Industrial Solutions intergarated to ECC 6.0 by default.
    From ABAP point of view you have the following new elements/components:
    - New ABAP editor /meanwhile it's available via downport for lower releases as well/
    - ABAP WebDynpro
    - Enhancement framework
    - Regular experssion support
    Also check this link for functionality differences.
    http://solutionbrowser.erp.sap.fmpmedia.com/

  • Roles and Role List

    Hi all,
    Please explain me about the Roles and Role List used in Projects...
    Thanks
    Dinesh

    Hi
    Roles are using in Projects for two goals -
    A) a basis for project-based security. You might create roles as project roles and assign people to the role in a project. For example, project manger, project admin, project billing person, etc. You then might configure the security access to forms and functions of specific roles.
    B) when implementing Proejct Resource Management, the project roles may be scheduled on a project and serve as a template for resource demand. In that case you might configure the team member role on a project, such as competencies, job information, and security.
    You might want to review Oracle Projects Fundamentals and Projects Implementation Guide for more details.
    Dina

  • Download all roles Individually and list all the SAP standard roles

    Hi ,
    I have two questions .
    1. I want o download all the roles individually in SAP.
    2. I want to list all the SAP standard roles whose profile is generated.
    Can anyone help me . to achieve this

    Dear,
    I am no sure what kind of problem you have faced that requires revert back. Which took 2 days. If it's for mass role revert back then mass role download should work. If it few selective role then change history should help you out.
    Anyway I might pull this out of the topic.
    Even you download mass role in a single file then also if you want then can upload a single role only with 2-3 mins spending on replace function in notepad!!
    Let say you have taken 1000 role in a single file and want to upload a specific role only. Open the file (copy of the file) in a notepad. Now replace(Ctrlh) LOADED_AGRS with nothing. Find(Ctrlf) the role you want to upload. In begining of that line paste LOADED_AGRS
    Above file will upload the specific role only.
    Regards,
    Arpan Paik

  • My Yahoo Mail in Firefox now won't give me the name list in the To/CcBcc fields ? Has been fine. Firefox is the latest version and history etc all cleared.e

    My Yahoo Mail in Firefox now won't give me the name list in the To/CcBcc fields which has been working fine.
    Firefox is the latest version and history etc all cleared.
    I have done the syncing again and restarted.. That e-mail address field still not accessed.
    The Yahoo Mail works fine as before if using Internet Explorer...
    Help please...
    ............................................

    My Firefox was always been in "Never remember History" .... and I have just cleared All History again.. and it still doesn't work..

  • Trying to install features and Roles

    OK I've selected my features and Roles. When I run the install from a PXE boot using the Lite Touch Windows PE (x64). The OS installs and reboots and then attempt to run the roles and features install, at which point it dies and return the summary screen
    showing errors. These error are listed below from the ZTIOSRoles log. Close to the bottom of this transaction list is the following.
    <![LOG[Copying source files locally from
    \\WIN-DEPLOY-SRV\DeploymentShare$\Operating Systems\Windows Server 2012 R2 SERVERSTANDARDCORE x64\sources\sxs]LOG]!><time="12:46:55.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1"
    thread="" file="ZTIOSRole">
    I am able to browse to the share and dig down to the directory. I guess at this point my questions are.
    1. Why is it looking to something on the deploymentshare when the fuctionallity is built into windows itself?
    2. What component is ZTIOSRole and how do I find out what it is really looking for?
    Note: This is a 2012 R2 Server and I'm trying to install ... And it fails at the First Role
    File and Storage Services
    ---- File Services
    --------File Server
    --------Data DeDuplication
    Hyper-v
    Role Administration
    ---- Hyper-v Management Tools
    -------- Hyper-v GUI Management Tools
    -------- Hyper-v Module for Windows Powershell
    Windows Server Backup
    Can someone please help
    <![LOG[Microsoft Deployment Toolkit version: 6.2.5019.0]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[The task sequencer log is located at C:\Users\ADMINI~1\AppData\Local\Temp\SMSTSLog\SMSTS.LOG.  For task sequence failures, please consult this log.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole"
    context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Roles will be installed.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Roles specified in Role:]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  FileAndStorage-Services]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Hyper-V]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[RoleServices specified in RoleService:]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  File-Services]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  FS-FileServer]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  FS-Data-Deduplication]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Features specified in Feature:]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  RSAT-Role-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  RSAT-AD-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  RSAT-Hyper-V-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Hyper-V-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Hyper-V-PowerShell]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Windows-Server-Backup]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoles.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoleServices.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSFeatures.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Event 41003 sent: ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Property Parameters is now = -FeatureName FileAndStorage-Services]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Validating connection to
    \\WIN-DEPLOY-SRV\DeploymentShare$\Operating Systems\Windows Server 2012 R2 SERVERSTANDARDCORE x64]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread=""
    file="ZTIOSRole">
    <![LOG[Mapping server share:
    \\WIN-DEPLOY-SRV\DeploymentShare$\Operating Systems\Windows Server 2012 R2 SERVERSTANDARDCORE x64\sources\sxs]LOG]!><time="12:46:55.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1"
    thread="" file="ZTIOSRole">
    <![LOG[ZTI ERROR - Unhandled error returned by ZTIOSRole: Path not found (76)]LOG]!><time="12:47:00.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="3" thread="" file="ZTIOSRole">
    <![LOG[Event 41002 sent: ZTI ERROR - Unhandled error returned by ZTIOSRole: Path not found (76)]LOG]!><time="12:47:00.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread=""
    file="ZTIOSRole">

    OK I've selected my features and Roles. When I run the install from a PXE boot using the Lite Touch I am able to browse to the share and dig down to the directory. I guess at this point my questions are.
    1. Why is it looking to something on the deploymentshare when the fuctionallity is built into windows itself?
    I think you are incorrect in stating that all functionality is built into Windows. Windows may require the sxs directory contents to install some OS Roles and Features. Does this directory exist in your Deployment Share, and if so does it contain all the files
    synced with your original OS source?
    Keith Garner - keithga.wordpress.com

  • Using Dynamic Groups in Ldap for Accounts and Roles

    Does anyone currently use dynamic groups in LDAP for accounts and roles? I have set up a dynamic group in ldap (we are using OID Oracle internet Directory 10.1.2.0) , ldapsearch returns the correct list of unique names, but the account does not appear on my profile page when I log in to UCM (10.1.3). I cannot find any documentation so I'm asking myself if it is supported .....

    Thanks tim ... will check, but Oracle are saying :
    Oracle Universal Content Management - Version: 7.5.1
    Information in this document applies to any platform.
    Product: Content Server
    Version: 6.0
    Goal
    Can the Content Server's LDAP provider support, or can it be configured to support, dynamic LDAP groups?
    Solution
    The Content Server by itself is unable to process dynamic LDAP groups since the filter that is used cannot read dynamic groups. However, dynamic groups can still work in the Content Server if the permissions for the queried user are generated on the LDAP server side. For example: Novell and Active Directory both have this functionality.
    to which I have replied you suport 3rd party ldaps, but not your own? Shurely shome mishtake ..... if ldap search works in a seamless way, surely provider should too ....
    Billy, you may well be right, just got a cashflow problem over here !

  • I have the adobe cloud 9.99/ month photography package i downloaded lightroom 5.4, it told me it was a trial version, and i'm now at the end of the trial and it won't let me download the full version and i don't have a serial number

    i have the adobe cloud 9.99/ month photography package i downloaded lightroom 5.4, it told me it was a trial version, and i'm now at the end of the trial and it won't let me download the full version and i don't have a serial number. also, when i click buy, i get an error message saying, "application not found."

    There are two different LR’s, one with a serial-number licensing and one with a CC-signin license.
    You should uninstall the serial-number LR you have installed, then
    Quit the CC Desktop application,
    Restart the CC Desktop application—this will rescan what you have installed and not see LR,
    LR will now be on the CC Desktiop apps list, so install that.

  • After downloading the "new version" of Java 6 times, my plugin-check page states that it has disabled my "outdated version" and asks for me to upgrade. What do?

    Background:
    I have had this problem for several months, now. This problem began when an update came for Java on the Firefox Plugin-check. I promptly installed the new Java update. But the Firefox update wouldn't register that I downloaded it, even after I refreshed the page. So, I got rid of the old Java, and downloaded the new Java again. When the page continued to display the same message it had before, I downloaded it a few more times. Finally, Firefox stopped saying that I was out of date. Then a few weeks later maybe, I check Firefox Plugin, and on the page it says that I am outdated in Java. So I downloaded Java again. But Java was still in the list, with red and said that it needed to be updated. I restarted the computer. Then, I restarted Mozilla Firefox with no add-ons. When Java still appeared that it needed to be updated, I gave up and didn't do a thing more about it.
    Problem:
    Today I decided to check my plugins. Java was not in update the list, and at the top a banner stated, "Missing JAVA? For your safety, Firefox has disabled your outdated version of Java. Please upgrade to the latest version." I clicked "upgrade to the latest version" and was led to the Java page. I clicked the download button. My cache stated that this was the (6) download of that same Java plugin (see background). I chose to re-download it anyways. But Firefox still insists that I have not downloaded it.
    Question:
    Do I need to go to the control panel of Java and change something? Do I need to fix some setting on Firefox? Should I disable Java altogether, delete all Java-related files on my computer, and start all over with Java? What should I do?

    Try using http://ninite.com/java/ninite.exe to install Java. Please note that even though you download it you have to double click it to get it to run and install.

  • I upgraded my Itunes to the latest version and now it won't let me view my library with the column browser. Can i get that back?

    i upgraded my Itunes to the latest version and now it won't let me view my library with the column browser. Can i get that back? I tried using the shortcut for it and nothing happens. When I try to do it from the view menu, it shows up as something I can't click on. The new library format is driving me crazy and I just want to get back to the old library view.

    We need to sort out some facts here first:
    •  You cannot be running Mt. Lion on your iMac G5.  What Mac is it?  What is the Model Identifier listed in About This Mac; More Info; Hardware Overview
    •  What is the model of your Epson Scanner?
    •  Have you attempted to scan using Image Capture, located in your Applications folder?
    •  Your Palm Pilot software will only run in Snow Leopard; so depending upon which Mac you have, you will either have to:
    1)  partition your hard drive or add an external hard drive and install Snow Leopard into it to "dual-boot" when you want to access you Palm software, or
    2)  install Snow Leopard Server (now available from Apple for $20 telephone orders USA & Canda only) into Parallels 8 to run your Palm software in Mt. Lion:
                                  [click on image to enlarge]

  • I have downloaded the latest version and I still get a message tha I still need to download because my version is not protected

    I am not sure what you want here - I opened Firefox and it had an Urgent symbol and message that my version of Firefox was not protected and that I should download new version - I downloaded the new version and then restarted my computer and I am still getting the same message every time I open Firefox

    The update doesn't seem to have been successful. Your More system details list list shows a Firefox 3.5.19 version.
    Download the full version and uninstall the currently installed version.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?

    Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?
    If not, then to me that is a huge retrograde step

    No, the old album list view is not an option in iTunes 11...
    You can restore much of the look & feel of the previous version with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album view use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc.
    If you still feel the need to roll back to iTunes 10.7 first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • Is there User Group and Role Reporting in SAP Enterprise Portal?

    I want to know if there is a way to pull users statistics our of SAP Enterprise Portal like you can out of the R3 backend systems.
    I would like functionality similar to the SUIM transaction. I know through user administration you can access any user, even a list of all users, and you can do similar lists with roles and groups. You can then access any of these things individually and look at their assignments. However, I want to do this on a large scale. I want to know for example every group that has a user assigned to it. Evergroup that has roles assigned to it. Or groups that have no user or role assignments. We have approximately 1904 groups in our Production Portal system and I am trying to clean up the groups that have no user assignment, but I don't want to look through them one by one.

    Hi Chris,
    There is no standard report available for this purpose. However all this information is stored in table UME_STRINGS.
    You can write your own SQL queries to generate such reports. However please note that this table is not normalized, and it's a master UME table. You should use it strictly for READ ONLY purpose.
    For a sample code you which i wrote some time back, you might refer:
    http://forums.sdn.sap.com/thread.jspa?threadID=2088099&messageID=10859334#10859334
    Thanks
    Prashant

  • Ozone 3 Demo great, bought the full version and now it won't work

    Bought Ozone 3 for mastering because I downloaded a trial version that was great. Installed the full version and now it won't show up in my garageband effects windows? Any help would be greatly appreciated. It shows up in pro-tools but not garageband? Any ideas or advice?
    Thanks in advance.

    I was able to get some help with the situation by going to the thread at:
    https://discussions.apple.com/thread/4091321?tstart=0
    I followed the basic idea of the guy who said OH!  I've got it! or something like that.  He listed several things to do to uninstall all apple programs then finally amds (which did uninstall but it still displayed in the Programs page) as well as to download the newest version of iTunes, save it to the desktop and run it by right-clicking and installing as admin.  It worked.  Thanks for offering to help with the situation.

Maybe you are looking for

  • How to open a e-card in attachment?

    Jam trying to open an e-card in a email.

  • NAS wont show up!

    Hi there, any help would be really appreciated as this is starting to drive me round the bend. I recently moved house, and consequently ISP (from NTL/Virgin to SKY). In my old house I had a: cable Modem > Airport Extreme (providing DHCP) > Netgear Sw

  • What is CONTROL - M process ?

    Hi to the group, can some one let me know - what is CONTROL - M process in detail. Is it related to back ground job scheduling ? Regards Madhuri

  • ALUI 6.1 Search Server, Filling in the operational gaps

    The topic is Search Server 6.1 running on ALUI 6.1MP1 or MP2.. The <root>/ptsearchserver/6.1/cluster/requests folder contains a number of folders each uniquely numbered. In these folders are timestamped files with ".delta" ext. We have all these file

  • XUL implementations and custom components

    I've been looking briefly into the myriad XUL implementations and one of my concerns is the ease of incorporating bespoke JComponent subclasses - and also bespoke Border and LayoutManager classes. And then doing things like implementing and using a c