Windows file attributes not preserved

Hi,
When Windows(XP) clients connect to file shares (from a 10.4.7 server) and open the Properties dialog for a file, they are able to set the various Attributes (Read-only, Hidden, Archive).
However, on re-opening the Properties dialog, they find that the attribute settings they have made have not been preserved. (ie. All attributes checkboxes are unchecked.)
Does anybody know if there are any settings I need to change on the server to enable support for Windows file attributes?
Thanks in advance,
Rob.
  Mac OS X (10.4.7)  

I'm 
Forgot to look there.  It works nice.  It is a little slower then NI's version, but does what I want.  Is NI planning on updating their ZIP API's?
Thanks!

Similar Messages

  • Get windows file attribute?

    Is it possible to read the Windows file attribute "Owner" (or others, for that matter)?
    I'm writing a program that searches through a network folder and finds files that fit a certain criteria. When it finds it, it writes the name to an output file. I'd like to have the "Owner" in the output file, so I can easily see who the culprits are.
    Thanks.

    ikb,
    There's an RFC on it (outstanding for only six bluddy years): http://bugs.sun.com/view_bug.do;jsessionid=ef75e3d144bc88fba12783a55cf?bug_id=6309963 So I wouldn't hold my breath!
    On any of uncle Bill's monstrosities: You can use JNI to call the native windows API.
    On an operating system: You can use JNI to examine the inode.
    In either case I think it's best to "wrap" the API calls in C/++ library which exposes the most granular possible interface to your java application(s)... thus reducing the amount/complexity of platform specific code in your java application... and pushing the bulk of the implementation realities into an environment which is equipped to deal with platform specifics...
    If you require (and it sounds like you do) bulk file system information I'm imagineering a FileSystemIterator: which would do a breadth-first recursive directory descent... It's next method would return an INode object... because the unix file system is more feature rich, so it'd be easier to stuff winblows files into an INode's than it would unix files into a winblow structure. You might also have a DirectoryIterator which iterates the INode's in a given directory.
    Your C/++ libary(s) won't ever be platform portable... they will have there hands full being "version portable"... and that's really all that is required.
    Just an idea...
    Cheers. Keith

  • Finder window tab status not preserved

    OK, so Apple is going with Finder tabs.
    However, after reorganizing my desktop, and making use of tabs to "replace" the desktop with one large Finder window, I find that tabs are not preserved between sessions!!!
    Do I really have to restore the tabs manually every time I turn the computer on???

    i was getting the spinning grey wheel in status bar, with no files displaying.
    this thread describes re-launching Finder - which did the trick for me - though my issue was with the internal hard drive, not an external
    https://discussions.apple.com/thread/3649473?start=0&tstart=0

  • Windows File Attributes in ZIP file

    Is there a way to transfer the file and folder attributes when zipping them using the Add to ZIP function in LabVIEW?  I have a directory with some hidden and some read only files, but it looks like the zip function in LabVIEW ignores these.  I can see why they wouldn't have an input for that for cross platform compatibility, but the build should at least take a look at the existing attributes and use those if in the Windows OS.
    Is there any other zip utilities written for LabVIEW that could accomplish what I need to do?
    I'm using 8.5 right now, but checked it in 2009 with same results.
    Thanks!
    Solved!
    Go to Solution.

    I'm 
    Forgot to look there.  It works nice.  It is a little slower then NI's version, but does what I want.  Is NI planning on updating their ZIP API's?
    Thanks!

  • Mac - Windows File Sharing not working

    Hi there,
    I want to use Lion's SMB File Sharing from my MacBook Pro (mid-2012) and my PC running Windows XP. Currently, my list of Windows users on my Mac is empty, and everytime I try to log in from my PC, I get a prompt asking me to log in, but no matter which passwords I enter, they don't work.
    Can anyon help me? Thanks!
    PS A bit off topic, but my Screen Sharing option is missing too...

    OK, good. (although, dd-wrt doess appear to be non-standard openSource firmware, making these routers harder to troubleshoot for us mere mortals).
    But, yes about network name. if you can see the Mac in NetworkPlaces, this is good.
    Thank you for clarifying bit-by-bit that the work network and the home network are your own setups, and the they're that identical.
    As much information as you can provide is helpful.
    I think you're going to find concrete clues to your problems...in the samba logs. it's not really a "test", it's merely looking into the logs during the time ( or finding the times where the connection fails)...and you will find the reasons that the connection fails.
    Good luck

  • Windows File Share not using Correct NIC Interface.

    Hi
    I have Windows 2012 R2 server with two 1gb NICs.  I want to use NIC1 for the regular network traffic/Internet and the NIC2 for database traffic.  NIC1 has IP Addresses of 64.141.xxx.xxx (I am not showing the last 6 digits for security reasons)
    and 192.168.10.21.  NIC2 has the IP Address of 192.168.11.2.
    The Workstation accessing this server also has two NICS.  NIC1 has the IP address of 64.141.xxx.xxx and 192.168.10.22.  NIC2 has the IP Address of 192.168.11.4.
    I created a share on the server myDataShare$.  On the Workstation I access the share using \\192.168.11.2\myDataShare$ and everything works accept that the data from the share is sent across NIC1 but I want it to go over NIC2.  If I add static
    routes to both machines it makes no difference all network traffic always goes out on NIC1 for both machines.
    If look at the status of each NIC on the send and receive bytes only NIC1 show any traffic.  NIC2 is silent.  How do I get traffic for the 192.168.11.0/24 subnet to use NIC2?
    The strange thing is that if I ping a 192.168.11.0/24 address it goes over NIC2 but file sharing seems to ignore NIC2 altogether.
    Thanks,
    Simon

    Hi Simon,
    Windows Vista and later are based on the strong host model. In the strong host model, the host can only send packets on an interface if the interface is assigned the source
    IP address of the packet being sent. Also the concept of a primary IP address does not exist.
    If the program specifies a source IP address, that IP address is used as the source IP address for connections sourced from that socket and the adapter associated with that
    source IP is used as the source interface. The route table is searched but only for routes that can be reached from that source interface.
    You can try to set the “skipassource” flag ,by using this flag, the added new addresses are not used for outgoing packets unless explicitly set for use by outgoing packets.
    The detail information about skipassource flag:
    Source IP address selection on a Multi-Homed Windows Computer
    http://blogs.technet.com/b/networking/archive/2009/04/25/source-ip-address-selection-on-a-multi-homed-windows-computer.aspx
    The related KB:
    How multiple adapters on the same network are expected to behave
    https://support.microsoft.com/en-us/kb/175767/en-us
    The related third party article:
    Exchange 2013 on Windows Server 2012 with multiple IP addresses on a single NIC
    http://blog.enowsoftware.com/solutions-engine/bid/185076/Exchange-2013-on-Windows-Server-2012-with-multiple-IP-addresses-on-a-single-NIC
    I’m glad to be of help to you!
    *** This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these
    sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use
    of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet. ***
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Browsing Windows File Shares not working

    I'm trying to integrate Macs into our Windows and Linux Network. After finally getting a stable Active Directory binding (Article TS3248 http://support.apple.com/kb/TS3248?viewlocale=en_US) the remaining challenge is for our users to browse for Windows (Samba) servers. That is, visible in "Networking" or the Side Panel under "SHARED".
    At the moment the users are able to connect to all file shares by using "Connect to Server ..." and typing "smb://host/share" so we know that Kerberos is working well (AD Integration). The variation "smb://someuser@host/share" and providing a password also works. When the file share is mounted it is displayed under "Shared"
    Searching on the net led me to check /private/var/log/samba/log.nmbd file. Every five minutes the following error message is logged:
    \[2011/03/16 13:04:04, 0, pid=113\] /SourceCache/samba/samba-235.5/samba/source/libsmb/nmblib.c:send_udp(793)
    Packet send failed to <WINS server IP>(138) ERRNO=No route to host
    This doesn't make sense since this host is pingable and is on the same subnet (i.e. no route). An additional observation is that Windows XP machines that are NOT bound to the domain are browsable. The problem applies both to Windows Server 2008 as well as CentOS 5.5 servers running Samba.
    Google search has turned up nothing. Based upon my experience with other Samba implementations, this may be a bug in OS X. Anyone out there having the same problem or a resolution?

    I have a similar problem, and have seen something somewhere about a difference in AD in windows 2003 server and Windows 2008 server based networks. It also seem to be related to the lack of wins in modern Windows 2008 R2 functional level domains. I haven't been able to rule this out yet, but the problem for me is similar. MAC client running 10.6.x cannot see Windows computers under shared unless it's already mounted. I haven't been able to test this with OS X 10.7 yet.    

  • Source Timecode not preserved when making AC3 file

    First of all, this is my first time using Compressor so it is very likely that I have overlooked the obvious!
    I have created an AC3 Dolby Digital file in 5.1 from 6 wav files.
    All has gone well and I can successfully create the file and play it back, when reimported, via the preview window.
    My original 6 wav files all contain identical source timecodes.
    The resulting AC3 file does not appear to have preserved the source timecode.
    The preview window displays the timecode as starting from 00.00.00.00
    I have also imported the AC3 file into Final Cut Pro and confirmed that the timecode starts at Zero.
    My six original WAV files definitely have timecode.
    I cannot find any setting in Compressor that will let me alter the resulting file's timecode.
    If anybody could tell me what I have done wrong I would be very grateful.
    Thanks in advance
    Adam

    Having done a bit more investigation, I have found that AC3 files can have timecode embedded in them.
    Unfortunately Compressor does not preserve the source timecode but writes it's own, starting at 00.00.00.00
    Dolby Media Encoder SE (from Dolby) does give you the ability to preserve the source timecode - as do a couple of other programs - but they tend to be very expensive!
    I am not sure but I think that Final Cut Pro does not recognise the source timecode of an AC3 file - maybe that's why the option is not given in Compressor ?
    Thanks
    Adam

  • The window title attribute for the page layout region has not been set

    Hi, I am a newbie to OA Framework extensions. Could you please advise me how to get rid of below error ?
    "The window title attribute for the page layout region has not been set. This attribute value will be used for the browser window title and should be set according to the UI standards. A default window title will be displayed for all such pages that violate the standards. Action: Set the window title or title attribute for the page layout region. The title attribute is used as a secondary source for the window title if the window title is missing."
    My requirement is to extend a VO and almost done with that but when i run the PG ( HomePG.xml ) file to ensure everything is fine , The target page is being displayed with above error. Just to let you know that i have already set the Titile and Window Title attributes for the HomePG.xml region i.e PageLayoutRN.
    One more thing i would like to share is that i was set the Window Title to 'Oracle Applications Home Page' , but target page name is being displayed as 'Oracle Applications'.
    Any suggestions ??
    Thanks.

    Hi all, I now getting below error when i click on notification from notification page ( AdvancWorklistPG.xml ) which should have taken me to the notification details page ( NotifDetailsPG ). Please note that i am running the page from Jdeveloper.
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT NtfEO.NOTIFICATION_ID,
    NtfEO.RECIPIENT_ROLE,
    NtfEO.BEGIN_DATE AS BEGIN_DATE_F,
    NtfEO.DUE_DATE AS DUE_DATE_F,
    DECODE(NtfEO.MORE_INFO_ROLE, NULL, NtfEO.SUBJECT, FND_MESSAGE.GET_STRING('FND','FND_MORE_INFO_REQUESTED')||' '||NtfEO.SUBJECT) AS SUBJECT,
    NtfEO.PRIORITY AS PRIORITY_F,
    NtfEO.STATUS,
    NtfEO.END_DATE AS END_DATE_F,
    NtfEO.USER_COMMENT,
    NtfEO.MORE_INFO_ROLE,
    NtfEO.FROM_USER,
    NtfEO.FROM_ROLE,
    NtfEO.TO_USER
    FROM WF_NOTIFICATIONS NtfEO
    WHERE NtfEO.NOTIFICATION_ID = ?
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:597)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.nav.OAPageButtonBarBean.processRequest(OAPageButtonBarBean.java:351)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:953)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01008: not all variables bound

  • Captivate 5.5 published files are not visible in Fire Fox or open in new window.

    When I publish and post Captivate 5.5, the HTML or the swf files do not display in Fire Fox (latest version) without forcing the file to open in a new window (if it displays at all). If it does work, the Flash security blocks the swf on an ugly view until the user clicks.
    I thought it was because I have to assign a direct URL to each component, but all of the other Captivate sites I have reviewed have the same issue when viewing in Fire Fox.
    IE will display after the active x is authorized (I can live with that).
    You Tube and other Flash display properly in Fire Fox, just not Captivate products.
    I have disabled off all plugins, modified the protected settings, and everything I could find listed in the Fire Fox help. I have installed a previous version of Flash and Shockwave Player. Short of reinstalling windows, it is not working and that will not help because the published content is not visible on any other machine in the office or at home.
    The files are in a Portal, so I cannot share them unless you are in the DoD and have an AKO or DKO account.
    However, here is another example of the Captivate not working.
    https://clc.dau.mil/games (this displays on some computers, but not all)
    http://www.hartisd.net/pages/uploaded_files/Assignment_Search.mht (After allowing the mht, this displays in IE)
    I am not sure if it has something to do with the other 2 published xml files that are not directly referenced in the html, but I just need either the swf or html to display in the iframe without forcing another window to display and without a lot of dependecy issues with other add-ons in Fire Fox.
    - Thanks!

    Any of the DAU games, if they display. It is a government site, so they have the standard gov garbage (stuff not working like certificates), but nothing is harmful nor can they do anything to track other than the current session.
    It is kind of weird how the content is displayed... It is not an intranet, it goes to a limited access portal. When I store content, it uses an absolute path instead of relative path. Very aggrevating when using many of the tools for non-programmers (like me), and probably more aggrevating for programmers.
    Whether I point directly to the .swf or to the generated HTML, the content displays in IE, but not in FF.
    It may be a combination of FF and Captivate. FF seems rather flaky in dealing with swf files. There is the consideration for add-ons, but I tried on a newly imaged computer and it still was not working. Even after going through all of the FF steps to get it to work.
    Basically we had to create a new HTML file to display the content because the Captivate published files don't work. However, the new HTML does not reference the XML files.
    When I publish, I get 5 different files, .swf, .htm, .js, and 2 .xml. When I dig through the code (once again, not a programmer, soo I may be missing something), even round tripping to Flash, I do not see how the .xml files are referenced at all.
    These may be different topics, not sure, it came up because I am trying to get a simple solution from the product that can be easily transferred to our production servers and available for Solders to access.
    - Thanks
    Michael

  • For the first time, I'm trying to use adobe premiere elements10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or

    For the first time, I'm trying to use adobe premiere elements 10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or the codex is not installed. As a test, I created another very small project and get the same error message, when I try to open it. Pls give me a simple answer, a refund or a phone

    mike frischenmeyer
    What computer operating system is your Premiere Elements 10 running on? And, what video card/graphics card does that computer use?
    Is this the first time you are using Premiere Elements 10 or have you worked with it before successfully? There is no easy solution until we
    know the details and troubleshoot to determined what caused the problem.
    1. Can you open a new project?
    2. After you saved/closed the problem project, did you move, delete, or rename any of the files/folder that were related to the source media
    for that project?
    3. Please review the Adobe document on troubleshooting damaged projects.
    Troubleshoot damaged projects | Adobe Premiere Elements
    4. What are the steps that you are using to reopen this saved closed project.
    a. File Menu/Open Project/Name of Project
    b. Other
    Please review and consider and then we can decide what next based on your further details and results..
    Thank you.
    ATR

  • HT1923 I am using windows 7 and have upgraded itunes to 11. Now when I open my music library in itunes and click on a song it says "original file could not be found" Over 2000 songs come up this way and locate does not seem to work. Before the upgrade all

    With Windows 7 I upgraded itunes to 11. Now in my itunes library, when I click on a song "original file could not be found" comes up. This happens with over 2000 songs, but it seems to be ones I recorded from cd's. Locate does not seem to work. Has anyone else had this problem?

    Highlight a song that is supposedly missing, press CTRL+I to Get Info, say no when asked to locate the file, then look at the summary tab. Where does iTunes "think" the file should be? Where is it really? You may need to give a configuration file a minor tweak.
    tt2

  • Using SharePoint Open with File Exployer - works with Windows 7 but not with 8.1

    I am using a SharePoint site. There is an option to open the site in File Explorer [Open in Explorer] that I can use with Windows 7 computers with no problems.  However, when I try to use in Windows 8.1, I receive an error message telling me to add
    the SharePoint site to my trusted sites even though the site is already a trusted site. I can use this SharePoint command on multiple Windows 7 computers with no problems.  I set the Windows 7 computer next to the Windows 8.1 and used the same
    I/E 11 with the same security settings.  Works for 7 and not for 8.1.

    Hi,
    For your issue, try to do the following:
    Click Start > Run->Enter "services.msc" ->Find the WebClient service and select Restart.
    In Internet Explorer go to Tools > Internet Options > Security->Local intranet->make sure the AcitveX control is enabled.
    Enable Basic authentication on the client computer, by setting the BasicAuthLevel registry entry of the following key:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
    For detailed steps, refer to the KB:http://support.microsoft.com/en-us/kb/841215
    Also, here are some troubleshooting articles, you can use as a reference:
    http://blogs.technet.com/b/asiasupp/archive/2011/06/13/error-message-quot-your-client-does-not-support-opening-this-list-with-windows-explorer-quot-when-you-try-to-quot-open-with-explorer-quot-on-a-sharepoint-document-library-in-office-365-site.aspx
    https://support.office.com/en-au/article/Fix-problems-opening-documents-in-SharePoint-libraries-31329fa1-4ad0-47fc-95d8-bb0c5b12a536
    Besides, here is a similar post, you can use as a reference:
    https://social.technet.microsoft.com/Forums/office/en-US/9f03bdb1-d087-4c8e-8cde-8a2e1471e0cf/file-explorer-not-opening?forum=sharepointadmin
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • MDT 0xc0000098 The windows boot configuration data file does not contain a valid OS entry

    hello,
    i installed WDS+MDT for OS deployment. all was working fine.
    Now i need our branch office to be able to deploy OS as well.
    I installed a new Win 2008R2 server, and installed the WDS service on it.
    When reading about this on the internet i saw i need, on the MDT at our main office, to make a link, under "Advanced Configuration" - "Linked Deployment Shares" to the new WDS server (I used this: http://www.balm.se/?p=115")
    when doing so i entered the UNC path to the new server and then, on the created link, i right click and choose "Replicate now".
    after doing so, i tried booting a laptop just to see if there is any impact, and now, I'm getting this error:
    Windows failed to start. A recent hardware or software change might be the cause. To fix the problem:
    1. insert your windows installation disk and restart your computer
    2. choose your language, and then click "Next"
    3. Click "Repair your computer"
    If you do not have this disc, contact your system administrator or computer manufacturer for assistance.
    File: \Boot\BCD
    Status: 0xc0000098
    Info: The windows Boot Configuration Data file does not contain a valid OS entry.
    I know that usually when I'm getting this message, it means that a previous MDT installation was started and did not finished correctly, and the are some [stuff] on the HD, so i do a partition erase and start over and all working fine.
    Now it's not working. I tried several computer, even new ones, and NADA.
    someone know the cause?
    I know I read something, i don't remember where or how to find it, that when doing the steps I did, it alter\change some ini or xml, or something like this. is that true? any one know on what file do i need to look and see if something is misconfigured?
    thanks a lot for your help

    hello,
    i installed WDS+MDT for OS deployment. all was working fine.
    Now i need our branch office to be able to deploy OS as well.
    I installed a new Win 2008R2 server, and installed the WDS service on it.
    When reading about this on the internet i saw i need, on the MDT at our main office, to make a link, under "Advanced Configuration" - "Linked Deployment Shares" to the new WDS server (I used this: http://www.balm.se/?p=115")
    when doing so i entered the UNC path to the new server and then, on the created link, i right click and choose "Replicate now".
    after doing so, i tried booting a laptop just to see if there is any impact, and now, I'm getting this error:
    Windows failed to start. A recent hardware or software change might be the cause. To fix the problem:
    1. insert your windows installation disk and restart your computer
    2. choose your language, and then click "Next"
    3. Click "Repair your computer"
    If you do not have this disc, contact your system administrator or computer manufacturer for assistance.
    File: \Boot\BCD
    Status: 0xc0000098
    Info: The windows Boot Configuration Data file does not contain a valid OS entry.
    I know that usually when I'm getting this message, it means that a previous MDT installation was started and did not finished correctly, and the are some [stuff] on the HD, so i do a partition erase and start over and all working fine.
    Now it's not working. I tried several computer, even new ones, and NADA.
    someone know the cause?
    I know I read something, i don't remember where or how to find it, that when doing the steps I did, it alter\change some ini or xml, or something like this. is that true? any one know on what file do i need to look and see if something is misconfigured?
    thanks a lot for your help
    For a branch solution I would use DFS(R) rather than linked deploymentshares.
    If there is infrastructure at the remote sites you could use the MDT environment at your main site, and  then at each other site use an existing server or build a new server (VM is available). Create a Deploymentshare on each sever
    and copy the contents of the MDT environment from the first site into this share.  Next you will have to add the WDS service to each site's server. For WDS add the boot image. Of course as Keith noted ensure that you
    have the same versions of MDT and the WAIK/ADK on all systems
    You can use DFS to replicate to all of the other sites, but you will still have to create a deploymentshare, and install WDS at each site. So each site talks to its own WDS server you can use the DefaultGateway parameter instead -
    [Settings]
    Priority=Default, DefaultGateway
    [Default]
    SkipBDDWelcome=YES
    [DefaultGateway]
    192.168.10.1=Bergen
    192.168.20.1=Oslo
    [Bergen]
    DeployRoot=\\MDT-Bergen\DeploymentShare$
    [Oslo]
    DeployRoot=\\MDT-Oslo\DeploymentShare$
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • PDF files will not open in a Safari (v 6.0.5) browser window

    PDF files will not open in a Safari (v 6.0.5) browser window, OS 10.8.5. Version 11.0.04 Adobe Reader and Plug-ins installed. Both local and internet files do not load. What is happening here?

    Ok. I reloaded v 11.0.04 of Adobe Reader after quiting Safari 6.0.5 . Then deleted the 2 plug-ins AdobePDFViewer.plugin and AdobePDFViewerNPAPI.plugin . Relaunched Safari and tried to read a pdf from a repository at the URL mentioned in post 10 . The file was loaded and displayed correctly. Also a pdf file from my local disk store displayed nicely as well. What I do not understand is that there is no listing of an Adobe plug in /Library/Internet Plug-Ins , nor does Safari list any Adobe plug ins. So in that case this means that plug-ins for the display of pdfs in Safari windows are no longer needed!
    Adobe Reader version 11.0.04  is now working for me.
    Thanks for the help and the solution C.F.McBlob

Maybe you are looking for

  • "My iPod Could Not be Read or Written to"

    I keep getting this error when I upload, why?

  • Default printer in purchase order

    Hi Experts, I have defined one default printer in the message output condition (MN04). When i create purchase order and go to the message type, i can see this default printer there. But in case i am creating new message in the purchase order, default

  • In bom explosion instead c13 output cs12 came ,how to restrict

    Hi friend       i have developed summarised bom explosion, my requirement is from to using select option 1 to 10 it came one by one but ,only the issue is instad of cs13 output cs12 output is coming , how to restrict here i pasted the code give me a

  • Ipod slideshow problem

    I have been playing my entire photo album of 2,849 photos ony my TV via the Apple ipod AV Cable. My problem is after exactly 1,302 photos the pictures stop tranisitioning even thouhg the music continues to play. Does anyone know of a 1,302 photo limi

  • Logitech mouse  pref pane not working

    I have early 2009 mac pro - osx 10.8.5 and logitech control center pref pane 3.9 0 60 installed along with a m100 logitech mouse - the pref pane does not see it ... Q: how do I get the right clicker to = double click?