|
-
July 3rd, 2004, 03:55 PM
#16
I dint recieve anything how about you try sending to [email protected]
or
[email protected]
Might work
Regards,
Alexei
-
July 3rd, 2004, 04:00 PM
#17
I have sent it to [email protected] 30 minutes ago.
Isn't it the right address?
I will send it again to Your other address [email protected].
Thanks again for help!!
-
July 3rd, 2004, 04:05 PM
#18
-
July 3rd, 2004, 04:11 PM
#19
A sip of wine?
That's a good idea!
Doesn't solve problems but makes them look smaller
-
July 3rd, 2004, 04:16 PM
#20
-
July 3rd, 2004, 04:21 PM
#21
"Danke und Schlafe gut" 
Thanks for today and good night!
-
July 12th, 2004, 11:15 AM
#22
May be this helps?
I was having the same problem and searching for solution I found your mails....in the end I solved on my own by changing from local system to administrator of the domain the account used in the property page of the service......can thi be of any help?
Today i'm also looking for a sample.vbs file that enable me to obtain the size of specific file trhou the network....I can easily do it with a very simple objFSO.GetFile command but it works only on local file or on mapped network drive, what I would like to do is use the network name: \\computer_name\c:\file_name......got nothing?
-
August 9th, 2004, 12:15 PM
#23
Thanks iposeai
Your solution works very well.
-
September 16th, 2004, 08:58 AM
#24
Re: Starting Windows Service fails: 'access denied'
I had the same problem with starting a basic windows service I created in vb.net. This is what worked for me. The folder where the executable resided security was setup inproperly. When I checked the properties page for the folder and went to the security tab and clicked on everyone. Everyone only had list folders rights when I changed this to full control, I was able to run the service as a localsystem.
-
October 4th, 2004, 10:52 PM
#25
Re: Starting Windows Service fails: 'access denied'
Add these lines to your projectinstaller class in the InitializeComponent method:
this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
this.serviceProcessInstaller1.Password = null;
this.serviceProcessInstaller1.Username = null;
This will allow your service to run under the local account.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|