472,374 Members | 1,363 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,374 software developers and data experts.

"Permission denied" error while calling WSH's LogEvent method

I am having "Permission denied" error while calling
LogEvent method of WScript.Shell component.
Basically, ASP page calls Windows Script Host Shell
component to log events to the OS Application Event log.

My environment:
Windows Server 2003, IIS 6, WSH, Classic ASP, Vbscript

Below is the code and the error:
Code:
**********************************
call LogEvent(0, "some text")

Function LogEvent(intEventType, strEventMessage)
Set objWshShell = Server.CreateObject("WScript.Shell")
call objWshShell.LogEvent(intEventType, strEventMessage)
Set objWshShell = Nothing
End Function
**********************************
Error:
**********************************
Microsoft VBScript runtime error '800a0046'
Permission denied
**********************************

I made the change below based on 301309 KB article to no
avail.

"...Set the following Registry key to 0 instead of 1, and
then restart your computer for the changes to take effect.
HKLM\System\CurrentControlSet\Services\EventLog\Ap plication
Name: RestrictGuestAccess
Type: REG_DWORD"

I guess Windows Server 2003 configuration is a reason for
the error. Everything worked fine on Win2K server with IIS
5.0

Jul 19 '05 #1
3 18906
Use regedt32, navigate to the same place, right-click the EventLog node,
select Permissions... and make sure IUSR_(your_machine_name) has explicit
access.
"Yitzhak" <an*******@discussions.microsoft.com> wrote in message
news:03****************************@phx.gbl...
I am having "Permission denied" error while calling
LogEvent method of WScript.Shell component.
Basically, ASP page calls Windows Script Host Shell
component to log events to the OS Application Event log.

My environment:
Windows Server 2003, IIS 6, WSH, Classic ASP, Vbscript

Below is the code and the error:
Code:
**********************************
call LogEvent(0, "some text")

Function LogEvent(intEventType, strEventMessage)
Set objWshShell = Server.CreateObject("WScript.Shell")
call objWshShell.LogEvent(intEventType, strEventMessage)
Set objWshShell = Nothing
End Function
**********************************
Error:
**********************************
Microsoft VBScript runtime error '800a0046'
Permission denied
**********************************

I made the change below based on 301309 KB article to no
avail.

"...Set the following Registry key to 0 instead of 1, and
then restart your computer for the changes to take effect.
HKLM\System\CurrentControlSet\Services\EventLog\Ap plication
Name: RestrictGuestAccess
Type: REG_DWORD"

I guess Windows Server 2003 configuration is a reason for
the error. Everything worked fine on Win2K server with IIS
5.0

Jul 19 '05 #2
I changed registry permissions for Eventlog based on your
recommendation. Internet Guest Account has now Full
Control.

I am getting the same error...

-----Original Message-----
Use regedt32, navigate to the same place, right-click the EventLog node,select Permissions... and make sure IUSR_ (your_machine_name) has explicitaccess.
"Yitzhak" <an*******@discussions.microsoft.com> wrote in messagenews:03****************************@phx.gbl...
I am having "Permission denied" error while calling
LogEvent method of WScript.Shell component.
Basically, ASP page calls Windows Script Host Shell
component to log events to the OS Application Event log.

My environment:
Windows Server 2003, IIS 6, WSH, Classic ASP, Vbscript

Below is the code and the error:
Code:
**********************************
call LogEvent(0, "some text")

Function LogEvent(intEventType, strEventMessage)
Set objWshShell = Server.CreateObject ("WScript.Shell") call objWshShell.LogEvent(intEventType, strEventMessage) Set objWshShell = Nothing
End Function
**********************************
Error:
**********************************
Microsoft VBScript runtime error '800a0046'
Permission denied
**********************************

I made the change below based on 301309 KB article to no
avail.

"...Set the following Registry key to 0 instead of 1, and then restart your computer for the changes to take effect. HKLM\System\CurrentControlSet\Services\EventLog\Ap plication Name: RestrictGuestAccess
Type: REG_DWORD"

I guess Windows Server 2003 configuration is a reason for the error. Everything worked fine on Win2K server with IIS 5.0

.

Jul 19 '05 #3
After a call into Microsoft's PSS, this issue was identified as a bug
and a KB article should be out soon to address this. (After it goes
through the KB group, this will be said to be a feature I'm sure.)

While I was able to write to the event log when logged in as the IUSR
acct via a VBS script, I was not able to write to the event log via
ASP using virtually the same exact script. So, if MS later claims
that this is not a bug, that would be bogus IMO. Anyway, I did as
suggested in this article and it worked. I suggest to Microsoft to
make these security setting available in the Event Viewer in their
next service pack.

The work-around was actually published in an article by Michael Howard
last June:

"Development Impacts of Security Changes in Windows Server 2003"
http://msdn.microsoft.com/library/en...re06122003.asp
Here is the section of interest in that article:

-------------------------------------------------------------
Tighter ACLs on Event Logs

We also tightened up the ACLs on the event logs to restrict what
accounts can read and write to the logs. Better still, the security of
each log is configured locally through the values in the following
registry key:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Servic es\Eventlog

For example, the Application log Security Descriptor is configured
through the following registry value:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Servic es\Eventlog\Application\CustomSD

And the System log Security Descriptor is configured through the
following:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Servic es\Eventlog\System\CustomSD

The Security Descriptor for each log is specified by using Security
Descriptor Definition Language (SDDL) syntax. The following is an
example from the Application event log:

O:BAG:SYD:(D;;0xf0007;;;AN)(D;;0xf0007;;;BG)(A;;0x f0007;;;SY)(A;;0x7;;;BA)
(A;;0x7;;;SO)(A;;0x3;;;IU)(A;;0x3;;;SU)(A;;0x3;;;S-1-5-3)

This string means:

Entry Meaning
O:BA Object owner is Built-in Admin (BA).
G:SY Primary group is System (SY).
D: This is a DACL, rather than an audit entry or SACL.
(D;;0xf0007;;;AN) Deny Anonymous (AN) all access.
(D;;0xf0007;;;BG) Deny Built-in Guests (BG) all access.
(A;;0xf0005;;;SY) Allow System Read and Clear, including DELETE,
READ_CONTROL, WRITE_DAC, and WRITE_OWNER (indicated by the 0xf0000).
(A;;0x7;;;BA) Allow Built-in Admin READ, WRITE and CLEAR.
(A;;0x7;;;SO) Allow Server Operators READ, WRITE and CLEAR.
(A;;0x3;;;IU) Allow Interactive Users READ and WRITE.
(A;;0x3;;;SU) Allow Service accounts READ and WRITE.
(A;;0x3;;;S-1-5-3) Allow Batch accounts (S-1-5-3) READ and WRITE.

The specific event log access mask bits are:

0x0001 ELF_LOGFILE_READ Permission to read log files.
0x0002 ELF_LOGFILE_WRITE Permission to write log files.
0x0004 ELF_LOGFILE_CLEAR Permission to clear log files.

The only time you should see a failure in your application when
writing to the event log is because of an ACL issue. Please do not
relax the ACL too much. Add your own ACE to the SDDL string and then
restart the Event Log service. For example, if your process runs under
an account MyAccount, that has the SID
S-1-5-21-853885456-2109860151-3743179773-1190, and you want the
process to write to the Application log, simply add this string to the
SDDL string in the registry:

(A;;0x2;;; S-1-5-21-853885456-2109860151-3743179773-1190)
-------------------------------------------------------------
NOTE: You will need to get the SID of the IUSR account to apply this
work-around ... I used this script which I scraped from another usenet
posting:

[GetUserSID.vbs]
-------------------------------------------------------------
Dim ArgObj, strComputer, Account

Set ArgObj = WScript.Arguments

If ArgObj.Count < 1 or ArgObj.Count >2 Then
DisplayHelpMessage
WScript.Quit (GENERAL_FAILURE)
End If

Select Case ArgObj.Count
Case 1
strComputer = "."
Account = argObj(0)
Case 2
strComputer = argObj(0)
Account = argObj(1)
End Select
On Error Resume Next

Dim objWMIService, colItems, objItem
Set objWMIService = GetObject("winmgmts:\\" & strComputer &
"\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_Account
where Name = '" & Account & "'" )
For Each objItem in colItems
Wscript.Echo
Wscript.Echo " Account: " & objItem.Caption
Wscript.Echo " SID: " & objItem.SID
Wscript.Echo "Description: " & objItem.Description
Wscript.Echo
Next

' ----------------------------------------

Sub DisplayHelpMessage()
WScript.Echo "INVALID ARGUMENTS" & vbCrLf
WScript.Echo "Purpose: to obtain SID from the account name"
WScript.Echo " Usage: " & UCase(WScript.ScriptName) & "
[computer_name] account_name" & vbCrLf
End Sub
-------------------------------------------------------------

I hope that helps!


<an*******@discussions.microsoft.com> wrote in message news:<01****************************@phx.gbl>...
I changed registry permissions for Eventlog based on your
recommendation. Internet Guest Account has now Full
Control.

I am getting the same error...

-----Original Message-----
Use regedt32, navigate to the same place, right-click the

EventLog node,
select Permissions... and make sure IUSR_

(your_machine_name) has explicit
access.
"Yitzhak" <an*******@discussions.microsoft.com> wrote in

message
news:03****************************@phx.gbl...
I am having "Permission denied" error while calling
LogEvent method of WScript.Shell component.
Basically, ASP page calls Windows Script Host Shell
component to log events to the OS Application Event log.

My environment:
Windows Server 2003, IIS 6, WSH, Classic ASP, Vbscript

Below is the code and the error:
Code:
**********************************
call LogEvent(0, "some text")

Function LogEvent(intEventType, strEventMessage)
Set objWshShell = Server.CreateObject ("WScript.Shell") call objWshShell.LogEvent(intEventType, strEventMessage) Set objWshShell = Nothing
End Function
**********************************
Error:
**********************************
Microsoft VBScript runtime error '800a0046'
Permission denied
**********************************

I made the change below based on 301309 KB article to no
avail.

"...Set the following Registry key to 0 instead of 1, and then restart your computer for the changes to take effect. HKLM\System\CurrentControlSet\Services\EventLog\Ap plication Name: RestrictGuestAccess
Type: REG_DWORD"

I guess Windows Server 2003 configuration is a reason for the error. Everything worked fine on Win2K server with IIS 5.0

.

Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Noozer | last post by:
The following javascript code generates an "Access denied" error at the indicated line. This sample should allow the user to click "Browse" and choose a file. Once the user has selected a file...
3
by: Robert Oschler | last post by:
I have a Javascript bookmarklet that people want to add to their bookmarks. In Win 2k and below, addToFavorites() works fine. In Windows XP it generates a permission error and does nothing except...
12
by: Vlad de Mille IV | last post by:
Well, as the subject says.... Briefly, when I try to run *any* wizard, I get a simple dialog, stating "Permission Denied", to which I can only click "OK". I suspect this is a windows (XP)...
0
by: Brian Call | last post by:
We have a customer that is getting an "Access is denied" (to a specific dll in the application's bin directory) error on XP when trying to run an ASP.NET application. All the posts and KB articles...
0
by: matsla | last post by:
I have followed all guide lines to set up remote debugging but is it possible to do cross-domain remote debugging? I use same account/password on both computers (XP => 2003), added users to debug...
4
by: Russell Warren | last post by:
I've been having a hard time tracking down a very intermittent problem where I get a "permission denied" error when trying to rename a file to something that has just been deleted (on win32). ...
1
by: srivatsans101 | last post by:
Hi, I'm trying to access the IFrame contents on a HTML page as frames.document But in IE, I'm getting Access Denied Error Message. I tried to add the IFrame's Src WebSite (a...
6
by: =?Utf-8?B?UGF1bA==?= | last post by:
I am getting an "Access to the path "xxxx" is denied error. I believe is because the file that I am writing to programatically is being read/written to by another end user. These files have the...
1
by: =?Utf-8?B?SkI=?= | last post by:
Greetings, I am getting an "Access is denied" Error when calling objects from the AdminIndexServerClass from an ASP.NET application. I use this object to perform a simple rescan on a Catalog after...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.
0
DizelArs
by: DizelArs | last post by:
Hi all) Faced with a problem, element.click() event doesn't work in Safari browser. Tried various tricks like emulating touch event through a function: let clickEvent = new Event('click', {...
0
by: F22F35 | last post by:
I am a newbie to Access (most programming for that matter). I need help in creating an Access database that keeps the history of each user in a database. For example, a user might have lesson 1 sent...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.