IIS7.5/Win2k8 - Accessing Virtual Directories via UNC from non-domain machine to another non-domain machine

1,620

BINGO! I got it.

Hit the Advanced Settings for the Virtual Directory - Physical Path Credentials Logon Type was set to "Network" because well, that had made sense I guess. I changed it back to the default of Interactive and all seems to be fine.

Same User Name on both machines. Same passwords for each user.

That seemed to do it. Hopefully this thread comes up on Google to help some poor sap that struggled with this problem...

Thanks for all who looked at this thread and gave it a thought!

Share:
1,620

Related videos on Youtube

FarazShuja
Author by

FarazShuja

Updated on September 17, 2022

Comments

  • FarazShuja
    FarazShuja over 1 year

    I want to show error message when the length is lesser than 5, I have tried something like this but its never showing error message "Length must be greated than 5". It works when I remove the attribute equals-to from input tag. How to fix the directive so that its ok with minlength and other validation attributes

    <form id="createUserForm" class="form-horizontal row row-full" role="form" name="userForm" novalidate>    
    ...
    <input id="newPassword" name="newPassword" ng-model="newPassword" type="password" ng-minlength="5" equals-to="confirmPassword">
        <label ng-show="userForm.newPassword.minlength" class="error">Length must be greater than 4</label>
    ...
    </form>
    

    javascript

    .directive('equalsTo', function() {
        return {
            require: 'ngModel',
            link: function(scope, elm, attrs, ctrl) {
                ctrl.$parsers.unshift(function(viewValue) {
                    if (viewValue === scope[attrs.equalsTo]) {
                        ctrl.$setValidity('equalsTo', true);
                        return viewValue;
                    } else {
                        ctrl.$setValidity('equalsTo', false);
                        return undefined;
                    }
                });
            }
        };
    });
    
    • Antonius Bloch
      Antonius Bloch about 13 years
      Does your IIS Anonymous account have permissions set on the vdir?
    • Tim
      Tim about 10 years
      How is userForm.user.newPassword.minlength defined?
    • FarazShuja
      FarazShuja about 10 years
      @TimCastelijns question updated