Now we have installed SP1 on MCMS 2002. We have a different error
when running our script for exporting the postins.
This is the error we get when we run our export script:
script.wsf(151, 5) (ISOK File cmsdeploymentimpl.cpp, Line 230): File
or assembly name vjslibcw, or one of its dependencies, was not found.
Line 151 of our export script is th following command:
pCmsDeployExport.AuthenticateAsUser serverstring, userstring, password
Does anybody know what our problem is?
Thanks a lot,
Bert Janssens
see below :
-------------
Question: File or assembly name .dll, or one of its dependencies, was not
found.
Site Deployment Error: File or assembly name <name>.dll, or one of its
dependencies, was not found. (<name> is random):
Error ID: -2147352567
Source File: Source Method: NRSiteDeployServer
Description: File or assembly name ifdy1rnx.dll, or one of its
dependencies, was not found.
Answer
This error is because the aspnet_wp account didn't have permission to write
to WinNT\Temp (system tempory) directory.
-------------
Cheers,
Stefan.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Bert" <bert.j...@sd.be> wrote in message
news:bc62d49c.03100...@posting.google.com...
Our aspnet_wp.exe prcess runs under the ASPNET user but this user
already has "full control" to C:\WINNT\TEMP
So, this isn't the problem.
Now we export the postings daily with site manager and this still
works.
Does anybody knows why our script doesn't work, we want to schedule
the export and the import of postings automatically.
Thanks,
Bert Janssens
enable security auditing and check which item causes the problem.
Or download filemon from www.sysinternals.com and check if you get an
ACCDENIED for an item when running the script.
Cheers,
Stefan.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Bert" <bert.j...@sd.be> wrote in message
news:bc62d49c.03100...@posting.google.com...
I enabled security auditing on Succes and Failures and ran Filemon.exe
of sysinternals just like you said.
While running the script I get only "success audit" in the eventlog
and nog access denied events in Filemon.
Is there an other solution?
Thanks for the advice
Thanks a lot.
this post does not contain the original thread.
Please repost your error message.
Cheers,
Stefan.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Bert" <bert.j...@sd.be> wrote in message
news:bc62d49c.03100...@posting.google.com...
We have installed SP1 on MCMS 2002. We have a different error
when running our script for exporting the postings.
This is the error we get when we run our export script:
script.wsf(151, 5) (ISOK File cmsdeploymentimpl.cpp, Line 230): File
or assembly name vjslibcw, or one of its dependencies, was not found.
Line 151 of our export script is th following command:
pCmsDeployExport.AuthenticateAsUser serverstring, userstring, password
Does anybody know what our problem is?
Thanks a lot,
Bert Janssens
I already checked some Access denieds on folders using filemon and
enabled auditing but I don't see any failure audits.
Can you maybe help me?
"Stefan [MSFT]" <ste...@online.microsoft.com> wrote in message news:<eqSLY4Kj...@TK2MSFTNGP09.phx.gbl>...
see hint in the following article:
---------------
Question: File or assembly name .dll, or one of its dependencies, was not
found.
Site Deployment Error: File or assembly name <name>.dll, or one of its
dependencies, was not found. (<name> is random):
Error ID: -2147352567
Source File: Source Method: NRSiteDeployServer
Description: File or assembly name ifdy1rnx.dll, or one of its
dependencies, was not found.
Answer
This error is because the aspnet_wp account didn't have permission to write
to WinNT\Temp (system tempory) directory.
---------------
thanks for the advice but this isn't the problem.
- I have given my aspnet user 'full control' to C:\WINNT\TEMP
- I put the local aspnet user in my local Administrators group
- I put the MCMS System Administrator users in my local Administrators group
.. but I still have the problem when I run the script
Is this a known problem?
Thanks for the advice
Bert Janssens
"Stefan [MSFT]" <ste...@online.microsoft.com> wrote in message news:<uHHN5LO...@tk2msftngp13.phx.gbl>...
then this is not a known issue.
You should open a support case with Microsoft as this has never been raised
to us before.
Regards,
Stefan.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Bert" <bert.j...@sd.be> wrote in message
news:bc62d49c.0310...@posting.google.com...
does this means that you're sure that we have some sort of
authentication problem of an access denied on a file problem?
Thanks,
Bert
"Stefan [MSFT]" <ste...@online.microsoft.com> wrote in message news:<eowGEWYj...@TK2MSFTNGP09.phx.gbl>...
I created a simple testscipt:
Dim pCmsDeployExport
Set pCmsDeployExport =
WScript.CreateObject("CMSDeployClient.CmsDeployExport.1")
If ( Err.Number <> 0 ) Then
WScript.StdOut.WriteLine "Error instantiating MCMS objects!"
Set pCmsDeployExport = Nothing
WScript.Quit 2
End If
Call pCmsDeployExport.AuthenticateAsUser("http://server/",
"Winnt://Domain\user", "pw")
If ( Err.Number <> 0 ) Then
WScript.StdOut.WriteLine "Authentication Problem!"
Set pCmsDeployExport = Nothing
WScript.Quit 2
End If
WScript.StdOut.WriteLine "Authentication successful !"
I get the following error:
--------------------------
C:\SDComponenten\www2002\Tools\scripts\www2002_testscript.vbs(12, 1)
(ISOK Filecmsdeploymentimpl.cpp, Line 230): File or assembly name
vjslibcw, or one of its dependencies, was not found.
Nothing in the event viewer!!
Thanks,
Bert Janssens
"Stefan [MSFT]" <ste...@online.microsoft.com> wrote in message news:<eowGEWYj...@TK2MSFTNGP09.phx.gbl>...
I just identified that the same problem can happen when you have .NET
framework 1.0 installed together with SiteManager Refresh.
Is this your configuration?
Cheers,
Stefan.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Bert" <bert.j...@sd.be> wrote in message
news:bc62d49c.03101...@posting.google.com...