Validating UNC Paths

Consider the following PowerShell script:
while ($Path -eq $null -or $Path -eq '') {
$Path = Read-Host "Enter a local or UNC path"
if ((Test-Path $Path -PathType Container) -and ((Get-Item $Path).PSDrive.Provider.Name -eq "FileSystem")) {
Write-Host The path you entered is valid.
else {
Write-Host The path you entered is NOT valid.
Currently, it works as expected with local paths. However, valid UNC paths are considered invalid by this script. Also, I want it so that if a user accidentally puts "\\server" instead of "\\server\share", the script doesn't return the
following error message and then exit:
Test-Path : The UNC path should be of the form \\server\share.
How should I modify the code above to achieve this? Thanks!

It looks like that the following two methods have the same results
PS C:\> [bool]([System.Uri]$unc="\\server01\folder\file.txt").IsUnc
True
PS C:\> Test-Path -Path "\\server01\folder\file.txt" -IsValid
True
both Methods tests only if the syntax for an UNC Path is correct, but do not test if the path exist (or can be accessed)
I came to the following validation method:
Validate UNC Path
 Tested using PS 4.0 with Win 7
Using Test-Path cmdlet
Param (
    [Parameter(Position=0,Mandatory=$False,
HelpMessage="Enter a UNC path like \\server\share")]
    [ValidateScript({ Test-Path –Path $_ -IsValid })]
    [string]$unc = "\server01\My Share\folder"
NOTE:
Servername as full DNS Names is also valid, but  \\server01.com\\My dir\test.txt with ‘\\’ after the servername or after the sharename
 is also valid.
Spaces in the Path is allowed.
The –isValid Switch tests only if the path syntax is valid, not if the path really exist.
Using System.Uri class
Param (
    [Parameter(Position=0,Mandatory=$False,
HelpMessage="Enter a UNC path like \\server\share")]
    [ValidateScript({ [bool]([System.Uri]$_).IsUnc })]
    [string]$unc = "\server01\My Share\folder"
NOTE:
Servername as full DNS Names is also valid, but  "\\server01.com\\My dir\test.txt" with ‘\\’ after the servername or after the sharename
 is also valid.
Spaces in the Path is allowed. Test only if syntax is valid valid, not if the path really exist.
The same result as the Test-Path cmdlet with –isValid switch.
Using RegEx
Param (
 [Parameter(Position=0,Mandatory=$True,
   HelpMessage="Enter a UNC path like \\server\share")]
 [validatepattern({^\\\\\w+\\\w+})]
 [ValidateScript({Test-Path -Path $_ })]
 [string]$UNC_Path="\\server01\My share\folder"
# [string]$UNC_Path="\\server01\My share\folder\file.txt"
 is also valid
NOTE:
The regex pattern ‘^\\\\\w+\\\w+’ does not validate DNS servername like server.contoso.com
"\\server01.com\\My dir\test.txt"
 ‘\\’ after the servename or after the sharename is not allowed.
Test-Path used to test if the path really exist (or is accessible).
It depends what you want to validate and maybe return a specific Warning Message, I would do the test outside the Param() section.
Pasquale Lantella

Similar Messages

  • New-CMTaskSequenceMedia returns asking for valid UNC patch

    I am trying to create a new unattended OSD boot media via powershell for us to use in the automation of VM template creation. The problem is when I run the New-CMTaskSequenceMedia command below:
    New-CMTaskSequenceMedia -BootableMediaOption -BootImageId IDFROMSCCM -DistributionPointServerName DPName -ManagementPointServerName MP1,MP2,MP3 -MediaInputType CDDVD -MediaMode Dynamic -ProtectPassword $False -AllowUnattendedDeployment $True -CommandDistributionPointServerName
    DPName -CommandIncludeFile $True -Commandline "wscript.exe TSEnvVar.vbs" -CommandPackageName "Package Name" -CreateMediaSelfCertificate $False -EnablePrestartCommand $True -EnableUnknownSupport $True -MediaPath \\NetworkServer\pkgs$\OSD\Servers\BootMedia\Testing\VMTemp08R2.iso
    It returns
    WARNING: This field must take the form of either a  drive\directory path:
    <drive letter>:\<directory path>\<file name>
    or a valid UNC path:
    \\<server>\<directory path>\<file name>
    I've tried modifying my -MediaPath parameter to c:\temp\VMTemp08R2.iso to test but get the same message. Any assistance with this would be appreciated. "This Field" is a little vague of a message with so many parameters required in this command.

    Hi,
    The media path should be enclosed in double quote.
    New-CMTaskSequenceMedia -BootableMediaOption -BootImageId IDFROMSCCM -DistributionPointServerName DPName -ManagementPointServerName MP1,MP2,MP3 -MediaInputType CDDVD -MediaMode Dynamic -ProtectPassword $False -AllowUnattendedDeployment $True -CommandDistributionPointServerName
    DPName -CommandIncludeFile $True -Commandline "wscript.exe TSEnvVar.vbs" -CommandPackageName "Package Name" -CreateMediaSelfCertificate $False -EnablePrestartCommand $True -EnableUnknownSupport $True -MediaPath
    "\\NetworkServer\pkgs$\OSD\Servers\BootMedia\Testing\VMTemp08R2.iso"
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • The specified UNC path does not contain a valid WIM file or you do not have permission to access it. please specify a valid path

    I loaded 4 captured images into SCCM via the Add Operating System Image Wizard 2 months ago.
    I have since captured another image to the same location (which is the SCCM site server) and tried to add it to the server.
    I am getting error
    the specified UNC path does not contain a valid WIM file or you do not have permission to access it.  please specify a valid path
    nothing has changed on the site server that i can think of.
    i am domain admin and permissions have not changed.
    anyone got any answers?
    please help i am baffled

    I am having similer issues.
    Win 2003 SP2 - SCCM2007 SP2 R2 single site with MDT2010 intergrated but can not get a MDT2010 TS Captured WIM to import into SCCM OS Images "Invalid WIM". allso i tried to mount the MDT WIM image without luck (Invalid Image). however a SCCM TS
    will Capture and I can Import it into OS Images. it seems like something is amiss with MDT or WAIK possibly.

  • UNC Path is not valid or does not have write permissions

    Hi,
    I've just downloaded the MVMC 3.0 SA as well as the admin guide. My environment is the following setup:
    - Windows Server 2012 R2 as Hyper-V (SRV-1-011-HypV1, not domainjoined!)
    - Windows Server 2012 R2 as VM SRV-1-011-HypV1 (SRV-1-030-DC01, Domaincontroller)
    - Windows Server 2012 R2 as VM for Conversion with MVMC 3.0 hosted on SRV-1-011-HypV1 (SRV-1-032-File1, not domainjoined!)
    - VMWare ESXi 4.1, where the source VM resides (stone001)
    I've completed the wizard for converting a VM to Hyper-V and I'm Stuck at the Summary Check:
    "Blocking Issue(s):
     1: UNC Path '\\srv-1-011-hypv1\Converted' is not valid or does not have write permissions."
    From the admin guide this is described as Issue number 2:
    The machine, on which you   are running the conversion, and the destination Hyper-V host are not members   of the same Active Directory
    domain.
    Ensure that the machine on   which you are running the conversion and the destination Hyper-V host are   members of the same Active Directory
    domain.
    SRV-1-011-HypV1 and SRV-1-032-File1 are both Member of the "Workgroup" and are not domain joined. Right now, it is impossible to join the
    Hyper-V host to its VM-hosted Domain due to the required system restart at the domain join, while domain is going to be shut down. How can this issue be resolved?
    Further: Is there any conflict known operating MVMC from the destination Hyper-V host itself? Will the issue occur in this scenario too, as long as
    the hyper-V has not joined the domain?
    Kind regards
    S.Kuemmel

    Hi,
    in my case it worked when the Server(-VM) on which we installed the MVMC AND the target-file server were joined to the domain.
    We also created a domain account, which has write-permissions to the target fileshare. We used this domain account for logon on the MVMC-machine and for running the MVMC Wizard.
    Hope that helps
    Regards
    Robert

  • How do I create an installer for my project that allows for variable data entry like a server unc path?

    Hello All,
    I have a questions and a few hours of scouring the internet hasn't brought me much closer to an answer.
    Here's what I want to do. I have created a visual c# wpf application. I want to have an installer that during install time will have a text box or something where I can enter a server path as a string. Basically my application needs to know where to look
    for a server unc path \\server\somesharedfolder that it will be accessing primarily for its work. Secondly, how do I reference said information from within my code.
    I have come across application/user scoped settings, which appears to be what I'm looking for. However I can't find a way to have the installer prompt for a value "Server Path:" __________ that I could type into during installation. So far it appears
    the only way would be to edit the config.deploy file before running the installer, which isn't a big deal but you'd think there'd be an easy way to take in variables during install.
    EDIT: Apparently I can't edit the config.deploy file as I get an error message about the hash not matching.
    Thanks for your help!
    Lance

    Hello,
    The forums I found confusing, didn't know the best place to put this question so I put it here.
    I have found the answer over at stackoverflow and will detail here for anyone who may stumble across the same problem.
    The problem is ClickOnce seemingly doesn't support this feature. Installshield LE either doesn't or does but its incredibly too complicated if all you need is one variable passed to the registry during installation. And it seems the words used for googling
    this particular problem will never lead you to the solution.
    So here's how to do it (we will be first adding the Visual Studio Installer Add-on to restore original installer project functionality):
    1) Inside of visual studio 2013 go to Tools -> Extensions and Updates
    2) On the left-hand side click on Online -> Visual Studio Gallery
    3) In the upper-right search box search for "Visual Studio Installer"
    4) Download the extension labeled "Microsoft Visual Studio Installer Projects"
    5) Install, then open a new project under Templates -> Other Project Templates -> Visual Studio Installer -> Setup Project
    6) Now for the gold. In the solution explorer there are icons in a bar just below its title bar, highlight till you see "User Interface Setup" and open it.
    7) Now you can right click on Start, Progress, End etc any Category heading and hit Add Dialog.
    8) From here for my purposes, I used TextBoxes A
    9) Once you add it, click on it and observe its properties window. You will see Label, Property, and Value. Make a note of the property name as it will be used to store the data directly into the registry. *Note: there appears to be no way to perform data
    validation using the built in textbox dialogs, users can enter whatever they want and move on.
    10) Go to the registry editor on the same icon bar under solution explorer.
    11) Specify your registry folder, make a new value (I used string) and name it whatever you like. In the value section enter the property label formatted as such   [EDITA1]   depending on your value. 
    12) Now when you run the installer for your project, it will take data into that field and place it into the registry provided it has access to that key with the permissions you run the program under.

  • UNC Path

    Hi
    I just installed service pack 10 on my clients' server an now can't run the import package.
    I can successfully upload and preview the upload file. I even validated and processes my transformation file with the upload file and it ran successfully.  My import package fails with every attempt. I get the message:
    The UNC path should be of form
    server\share.
    Does anyone have any suggestions please?
    Regards,
    Mosa

    Hi all,
    My issue has been resolved.
    Solution
    It occurs when Fileserver is set to FQDN like this "
    test.qa.com\osoft"
    [Impact] Running DM package always failed.
    [Workaround] Do not use FQDN for fileserver data path
    The Note 1233199 means that you have to avoid using the Fully Qualified
    Domain Name for FileServer Datapath in the tblServerInfo table of the AppServer SQL Server database.
    This can be done directly in SQL Server Management Studio as follows:
    - open SQL Server Management Studio,
    - select the AppServer database,
    - create a backup for the tblServerInfo table by running the query: select * into tblserverinfo_save from tblserverinfo
    - in the row FileServer / DataPath, replace the Fully Qualified Domain Name of the server by the name of the server, for example if the path is
    SERVER01.SAP.COM\Share, change it to
    SERVER01\Share
    - try to run the import package again.
    Thank you all for your contribution.
    Regards,
    Mosa

  • Link from Document Library to UNC Path

    Can anyone tell me if it is possible to create a link from a document library to a UNC path?
    I need to establish links to resources in an existing document repository, but Sharepoint presents the following message when attempting to add the link "Enter a valid document name and URL. Valid URLs must begin with 'http:' or 'https:'"
    Thanks in advance.
    Dave

    Following are the steps to achieve this.
    1) Create a site content type of type "link to a document" with "Document" as a parent content type.
    2) Add the same to the document library.
    3) Go in the layouts folder open newlink.aspx in Visual Studio IDE
    4) add the following function to the script tag
    Code Snippetfunction HasValidUrlPrefix_Override(url)
                var urlLower=url.toLowerCase();
                if (-1==urlLower.search("^http://") &&
                -1==urlLower.search("^https://") && -1==urlLower.search("^file://"))
                return false;
                return true;
     5) Replace "HasValidUrlPrefix" to "HasValidUrlPrefix_Override" in the newlink.aspx
    6) IISReset and when adding a link to a file share. It shoudl be done in the following format "file://\\{ComputerName}\\}FileName}" it should work
    7) Change the wss resource file present in app_globalresources to show the following message "Enter a valid document name and URL.  Valid URLs must begin with 'http:' or 'https:' or 'file://'"
    Hope this should help.
    Regards,
    Mayur

  • SCEP UNC path definitions

    Hi, we have sccm 2012 R2 with SCEP clients configured to use UNC path as a 3rd and last resort to get the definition updates.
    When we click on Update on localy on a system with the SCEP interface, I know it won't go look into SCCM, but will go through the rest of the list.
    Ref:
    https://support.microsoft.com/en-us/kb/2831244?wa=wsignin1.0
    When you click Update in the SCEP UI, the client looks for a FallbackOrder registry
    key in HKLM\Software\Policies\Microsoft\Microsoft Antimalware\Signature Updates. The client will check each update source in the FallbackOrder registry key in the order that they are listed
    until it locates a source that has available definitions. If it goes through all sources without detecting available definitions, it returns an error and the update attempt is unsuccessful. Configuration Manager is never listed in the FallbackOrder registry
    key, as the SCEP client does not recognize a Configuration Manger Software Update Point agent (and associated infrastructure) as a valid definition source and cannot pull definitions from Configuration Manager. 
    The issue we have is that we have 2 UNC path configured, since we have two domains. Yes we could create two seperate policies and only apply the UNC path to each domain, but shouldn't the SCEP client go through both UNC path and find that he can access on
    of them and start to update?
    Right now it doesn't, it looks at the 1st and if he can't access it, it'll fail and report a timeout.
    Is this by design or an known/unknown issue with SCEP?
    Thks in advance and don't hesitate if you have any questions.
    Steph
    joeblow

    I have only ever used one definition source for unc updates. The technet page states you can add one or more though.
    Click Set
    Paths. Then, in the Configure
    Definition Update UNC Paths dialog box, add one or more UNC paths to the location of the definition updates files on a network
    share
    https://technet.microsoft.com/en-gb/library/jj822983.aspx?f=255&MSPPError=-2147217396
    Bet one of the guys on here knows though.

  • Full path and filename in wwv_flow_files after upload from UNC path in IE

    I have a page with a file browse item. After page submit I move the file from wwv_flow_files to another table.
    Normally the column wwv_flow_files.filename only contains the filename. However, when using IE9 and selecting a file from an UNC path the column contains the full path+filename.
    Does anybody have an idea what happens here?
    How can I make sure I only get the filename?
    Using Apex 4.02.007
    Edited by: Rene W. on Feb 28, 2013 6:39 AM

    Rene W. wrote:
    I have a page with a file browse item. After page submit I move the file from wwv_flow_files to another table.
    Normally the column wwv_flow_files.filename only contains the filename. However, when using IE9 and selecting a file from an UNC path the column contains the full path+filename.
    Does anybody have an idea what happens here?
    How can I make sure I only get the filename?For security/privacy reasons recent versions of browsers by default do not send local file path information from File Browse items to the server, nor expose the file path in the control's JavaScript methods. Firefox, Safari and Chrome only provide the filename. IE6 & IE7 still yield the path in Windows format. IE8+ and Opera have adopted an irritating approach of replacing the path with a wholly imaginary "C:\fakepath\"—and this monstrosity has sadly had to be enshrined in the HTML spec. A reasonably compatible way to strip the path in JS is provided there, or you should be able to do it fairly easily in PL/SQL when moving the file.
    The fact you are getting the full path suggests that the IE security config setting "Include local directory path when uploading files" (or IE9 equivalent) is used in your browser/environment to enable the path to be exposed in IE. This may be necessary to support dismal legacy applications. Consult whoever is responsible for browser security configuration at your site to see why/if this setting is necessary.

  • Creating a symlink directory on a network share to a path below a mapped drive letter, local path, or UNC path does not work

    Am I correct in assuming I can not create a `symlinkd` to a network share, local path, or a UNC path on a network share that will be accessible by clients?
    ###Mapped drive letters don't work:
    1) navigate to a network share:
    pushd \\windows2008server\share\
    2) make a hardlink:
    mklink /d test_sharedir t:\directory\
    dir .\test_sharedir
    #Directory of Z:\test_sharedir
    #File Not Found
    UNC paths don't work:
    1) navigate to a network share:
    pushd \\windows2008server\share\
    2) make a symlink:
    mklink /d test_dirunc \\windows2008server\share
    dir .\test_dirunc
    #Directory of Z:\test_dirunc
    #File Not Found
    I can create a functional `symlinkd` on a local drive to a mapped drive letter or a UNC path.
    Are my assumptions above correct?
    We are in the middle of a migration and have created two symlinkd to UNC paths for shared DLLs, one below c:\windows\system32\ (directing to a share containing 64-bit DLLs) and one below c:\windows\syswow64 (directing to a share containing 32-bit DLLs).
    On the file server, we have had a path to 32-bit DLLs (from Windows 7 clients: s:\dll\).  I am attempting to rename this directory so that it is accessible via "s:\dll32\" and would like to create a symlinkd that links "s:\dll" to
    "s:\dll32" [again where S: is a mapped drive on a Windows 2008 server].  How do I do this?
    Thanks,
    Matt

    Hello Mandy,
    The link you sent me is for Netapp CIFS server daemon contained within DataOnTap (the Netapp OS) to follow symlinks.  I am inquiring about the Microsoft products Windows Server and Windows 7.
    To gain a better understanding of the Microsoft Windows Server and client (Windows) CIFS stacks and interaction of the stacks, I have referred to Figure 6 "Server Message Block Server Model" within the following (albeit older) document: http://download.microsoft.com/download/2/8/0/2800a518-7ac6-4aac-bd85-74d2c52e1ec6/tuning.doc
    You will see the following:
    I assume that the Windows Server CIFS server service must be "smart enough" to determine that a CIFS client is attempting access to a SYMLINKD and actually fill the request by following the SYMLINKD.  The CIFS server service does not appear
    to operate like this.
    1) Am I correct in my assumption that the CIFS client (redirector) and the CIFS server (server) do not following symbolic links (whether they be file or directory)?
    2) If not, how do I submit a feature request for this so that it can be reviewed and approved or not approved for inclusion/hotfix release?
    Thanks for your time,
    Matt Brown
    [UPDATE]
    Note that you can use a `directory junction` instead of using a SYMLINKD, to link to LOCAL resources (source). However, `directory junctions` do not allow access to resources over UNC.

  • Intermittent loss of UNC path access on Windows Server 2012

    Hi All,
    I hope someone can help with a major headache we've been having on two Windows Server 2012 boxes since September this year. Basically, these servers will intermittently lose the ability to browse network shares from windows explorer and the only way we have
    found to resolve this is to reboot. When the issue happens, we can't even log into the server as it sits at 'applying user settings' - presumably as it is failing to access the netlogon share on our DCs. If we have an active RDP session when the issue occurs,
    we can connect. In this instance we see that if you enter a UNC path in Windows explorer and hit enter, nothing happens - no error messages or anything. The only way I can get any response is when trying to access the IPC$ share on another server, which gives
    the following response:
    \\server\ipc$ is not accessible. You might not have permission to use this resource, Contact the administrator of this server to find out if you have access permissions.
    The parameter is incorrect.
    Everything looks right from a physical network perspective, as we can ping from the affected servers and DNS queries are working fine. I can even run net view from powershell and see the local servers and shares on these, however any attempt to access shares
    just hangs the powershell session.
    If I look in the SMBClient event logs, I can see entries like the following:
    Event ID 30805
    The client lost its session to the server.
    Error: The transport connection is now disconnected.
    This is made worse by the fact that when this issue happens, we can't even cleanly reboot the server (it just hangs) and have to perform a cold boot.
    The firewall has been turned off and we have taken off our antivirus software to eliminate it as a possible cause. We have even rebuilt one of these servers on a clean install of 2012 R2, but the issue re-appeared. We have also tried using different NIC
    drivers (Broadcom NICs installed) to no avail. We have also tried disabling IPv6.
    We have logged a ticket with Microsoft support, who have come back telling us that this could be related to a known bug with DFS in 2012 for which a fix is being tested prior to release in a few weeks. However, I can't sit around on my hands until then on
    the off chance that this fix will resolve our problem. These servers are hosting our production Lync 2013 front end service and when this issue occurs it breaks the address book search and response group services, so this issue is of critical importance for
    us to get resolved asap.
    Any help on this would be greatly appreciated.

    Hi,
    That's right, if you hit enter absolutely nothing happens, no error messages. It makes no difference if I try name or IP address - even trying \\localhost doesn't work. A few minutes later after trying, an entry appears in the SMBClient event logs as mentioned
    in my original post. To me it looks like something deep within the networking operations of the OS is randomly breaking. Also, if I try to browse the network from Windows explorer, it just hangs. When I try to restart the workstation service, it just gets
    permanently stuck in a stopping state and the server has to be cold booted. Once it boots up, everything is working fine again....until the next time. There is absolutely nothing appearing in the application or system event logs indicating the root cause.
    I've checked and DNS resolution is working OK and I can telnet to other hosts on all the required ports.
    I had originally thought it might be related to the Broadcom NICs as we've had issues with them in the past, but we switched over to use the 2012 inbox driver for them and the same issue happens. I should also mention that one server is a blade and the other
    a rackmount box. Dell support have run full diagnostics on both and have come up clean, so it doesn't appear to be a hardware issue. The even more baffling thing is that we have a third server with identical spec and config that does not have the problem.
    The only difference with this third server is that it is not part of a Lync pool pairing using DFS and sits in a remote location on a different LAN.
    I had thought of trying to drop back to use SMB1 by disabling SMB2 and 3, but I'm not sure if this would adversely affect any other services.
    This one really has me stumped.

  • Problem with Java keystore and certificates (unable to find valid cert path

    Our program is made so that when a certificate is not signed by a trusted Certification Authority, it will ask the user if he/her wishes to trust the certificate or not. If they decide to trust the certificate, it will accept the self signed certificate and import it into the keystore and then use that certificate to log the user in. This works fine. It will import the certificate into the keystore and use the specified ip address to establish a connection with the LDAP server (Active Directory in our case) and authenticate properly. However, the problem arises when we then try and connect to a different ip address (without restarting tomcat, if we restart tomcat, it works fine...). It imports the certificate into the keystore fine, but always gives the exception
    "Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target"
    and does not authenticate with our LDAP server (which is Active Directory). The problem seems to be that it is no longer looking at the System.setProperty("javax.net.ssl.trustStore", myTrustStore);
    I have tried multiple times to just reset this property and try and "force" it to read from my specified trust file when this error happens. I have also imported the certificates directly into the <java_home>/jre/lib/security/cacerts and <java_home>/jre/lib/security/jssecacerts directories as the java documentation says that it will look at those directories first to see if it can find a trusted certificate. However, this does not work either. The only way that I can get this to work is by restarting tomcat all together.
    If both of the certificates are already in the keystore before tomcat is started up, everything will work perfect. Again, the only problem is after first connecting to an IP address using TLS and importing the certificate, and then trying to connect to another IP address with a different certificate and import it into the keystore.
    One of the interesting features of this is that after the second IP address has failed, I can change the IP address back to the first one that authenticated successfully and authenticate successfully again (ie
    I use ip 1.1.1.1, import self signed certificate, authenticates successfully
    login with ip 2.2.2.2 import self signed certificate, FAILS
    login again with 1.1.1.1 (doesn't import certificate because it is already in keystore) successfully authenticates
    Also, I am using java 1.5.0_03.
    Any help is greatly appreciated as I've been trying to figure this out for over a week now.
    Thanks

    Please don't post in threads that are long dead and don't hijack other threads. When you have a question, start your own topic. Feel free to provide a link to an old post that may be relevant to your problem.
    I'm locking this thread now.

  • Acrobat Reader XI fail to open file from unc path "Access Denied"

    Hi,
    When we try to open a pdf file from an unc path by double-click on it there is an error message : "There was error opening this files. Access Denied"
    If we do "File -> Open" the file open correctly. Same if we copy the file localy.
    After looking around Internet and other thread Acrobat Reader X got the same problem but seemed to be resolved with an update.
    If we desable "Enable Protected Mode at startup" the file open correctly (it is not a solution).
    Does anyone have a solution to this problem ?
    OS : Windows XP SP3
    Acrobat Reader : 11.0.2
    Regards,

    I have also seen this occur with one user's computer.  Another user with similar privileges and software setup does not exhibit the same issue however.  Would love Adobe to investigate and address this issue.

  • Creating a directory on a remote machine using a UNC path

    Hi all,
    Is it possible to create a directory on a remote machine using a UNC path such as \\Server\Share\Directory?
    If so, how would i go about this? (Sorry for the newbie question, that's exactly what I am!)
    Thanks,
    Rob

    The tables on your pages are images. Not very convenient if the visitor wants to copy the information and use it.
    Read this how to use tables :
    http://www.wyodor.net/blog/archives/2010/01/entry_297.html
    http://www.wyodor.net/blog/archives/2010/01/entry_298.html
    Samples :
    http://www.wyodor.net/mfi/Maaskant/Seabreeze.html
    http://www.wyodor.net/mfi/Maaskant/Experiment.html
    http://www.wyodor.net/mfi/roodhout/Prices.html
    And here's a non-iWeb page with a sortable table :
    http://www.wyodor.net/htmlegg/TallCard/TallAjax.html?pg=tablesorter
    Or use a database on the server with MySQL and make tables with PHP :
    http://www.google.com/search?q=create+html+table+with+data+from+mysql+database
    Here's a very simple way to do it :
    http://home.wyodor.net/w3school

  • Can't add own application to RemoteApps - "You must specify a file from the RD Session Host server SERVERNAME by using the UNC path....

    Hi, there
    I'm not really pro- at RDS in server 2012 (r1), but I have a problem and don't find anything suitable on internet:
    I'm trying to publish one of my own, unlisted programs to rdweb, but it keeps saying "You must specify a file from the RD Session Host server SERVERNAME by using the UNC path...."
    1) I provided the path in the unc name - when I click "Add.." then i browse the the .exe file via network share, not via local path. So that should be OK
    2) Firewall is turned off and eventhough the exeptions are enabled, both of then, checked
    What else should I do to make this work?

    Okej, I found the sollution:
    You have to specify the path like \\hostname\drive_letter$\path-to-the-program.
    I was doing wrong because i wrote it like \\hostname\ShareName\path-to-the-program.
    I was misleded because the wizard wants me to find the program by clicking, and not by entring the path manualy.

Maybe you are looking for

  • Making loops match up to the tempo

    So I have a live recording that I want to use a drum break from, I can grab the loop and add it to my library but I cant set the tempo cause I don't know what it is. The old garageband I use to be able to adjust the tempo and watch the grid move as t

  • Acrobat Pro X Shared Review email issue

    One of our agency users is having problems sending shared reviews.  When she gets to the final step of sending the shared review the TO: field will not allow her to add e-mail addresses either manually or via the Outlook address book.  This happens s

  • HT5654 Trouble udating itunes to synce with iphone (updated to ios 7)

    I recently downloaded ios 7 for my iphone however, now it will not sync with my itunes (MAC). It tells me to update my itunes, unfortunatley every time i try to do so, my mac says i am running the latest version (which i know for a fact i am not). pl

  • Sharing files with macbook

    how do I import address book from my Macbook wirelessly? Thanks.

  • IPod Touch 5Gen movie file extension is MOV.mov - why?

    I noticed when I recorded a movie today, the file extension was .MOV.mov  . I've never seen this before. I can watch it fine. When I record using my iPad 2, the movies just have .MOV as the file extension. Is this a glitch and if so, how to fix it? (