Can Service Run .exe Without User Logon

Oct 8, 2009

This might seem obvious but I was doing some research and I was wondering if a service application start an executable. I know an .exe cannot start without some sort of logon but I was wondering if it was possible to work around this by having my service call it.

View 3 Replies


ADVERTISEMENT

Way For Service To Detect When Logon Screen Is Present And When It's Gone?

May 25, 2010

I am planning on creating a service that measures the bootup time for a computer. It would go something like this:

1. Service starts and waits for CTRL+ALT+DEL screen
2. Timer starts when logon screen appears
3. User logs in and timer stops
4. Service waits for process X to start
5. Process X starts and service gets System.Environment.TickCount
6. Service subtracts step 3 ticks from tickcount

The reason for the logon screen timer is I don't want to measure if the user booted up and went for coffee or something and shows up 20 mins later to log in. Is there any way for the service to detect when the logon screen is present and when it's gone?

View 12 Replies

Way To Change SQLSERVERAGENT Service Logon Password

Sep 14, 2010

I am trying to figure out a way to change the SQLSERVERAGENT service Logon password with one of my VB2008 applications. I can't seem to find any place in the registry were the password is stored and can find any solution other than manually going into the service and changing it myself.

View 12 Replies

How To Set User 'logon To' AD Attribute

Feb 8, 2012

I'm working on upgrading a solution in VB.NET that is heavily based on Active Directory. As of now, I'm trying to add a PC restriction to a new AD User upon user creation. Essentially, I need to update the Logon To attribute to include 1 or more PCs, how do I go about doing this? I learned that I am interested in the IADsUser property "LoginWorkstations" url...). As of now, I have code that can fetch this attribute from any AD user, but I cannot set it. [code]I've tried testing this approach with a different attribute and it works just fine. Not much out there on Google either unfortunately.

View 2 Replies

Create Logon Using SQL Server Similar To The Windows Live Logon

Aug 20, 2011

I am wanting to create a logon similar to the Windows Live logon, so in other words. user has frmLogon and is located in Australia. The user enters his/her details and then the program connects to a server in the United States and checks the Username and Password to make sure it is correct if it is correct it allows the user to logon and move to the next stage, if it is wrong it will give him an error message. I am wondering if anyone has a tutorial or source code laying around that I can rip apart and see how it works. I want to put the database on my server and connect to it from my desktop using the logon form.

View 3 Replies

Creating A Local User With The Option "User Must Change Password At Next Logon" Set

Oct 19, 2010

I am currently creating a tool that can manage local user accounts on Windows-PCs. I am using the functions described on

this MSDN page ; and after some struggling, I got most of them to work.

Unluckily, I haven't found a way to set the option "User must change password at next logon" while creating a new user account. I use the

NetUserAdd -Function to create the new user. I set the level to 1 and supply a

USER_INFO_1 -Structure . This structure accepts flags, and the flag UF_PASSWORD_EXPIRED seems to be exactly what I want - but when I set it, the user can log on without changing the password first...

I'm developing on Windows 7 Ultimate 64-Bit using Visual Studio 2010 Express.

Here's my code:

#Region "Constants"
Public Const UF_PASSWORD_EXPIRED As Integer = &H800000
Public Const USER_PRIV_USER As Integer = 1

[Code].....

View 7 Replies

.net User ID One Time Logon And Save?

Jul 7, 2011

i could use some help with this program i'm making, Script:

Public Class logon

Private Sub logon_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
Dim client As New Net.WebClient
RichTextBox1.Text = client.DownloadString("ftp://null:null@null.com/users.txt")

[Code]...

View 2 Replies

Set The Logon-Script In The AD For A User With Putex?

Jul 12, 2010

I do have a VB Problem that is reflected in the followin code fragment: (currently using Visual Studio 2005, error is the same in VB6)

[Code]...

View 2 Replies

Fire An Event On Windows User Logon?

Nov 5, 2011

I want to create a service that sets up a user specific environment. So I would like to know when a user has logged on to the computer.

View 3 Replies

Getting Login Failed For User 'NT AUTHORITYANONYMOUS LOGON'

Jan 5, 2012

I just setup my old pc to run SQL Server and VisualSVN. I have a laptop and another pc that i need to work on a website and that is why i setup subversion and sql server on a seperate pc. I have set up VisualSVN and ToirtoiseSVN but im getting SQL Server Problems below is how im connecting to the DB[code]...

View 1 Replies

Logon Failure : Unknown User Name Or Bad Password

Feb 8, 2012

I am using VB.NET 2008.

On this Windows 7 Professional SP1 machine, when I run the following code in the program

FileCopy(sServer & "loglog.txt", Application.StartupPath & "log.txt")

I got the error "Logon failure: unknown user name or bad password."

sServer is 1 of our server machine.

The Windows 7 machine already logged in to the sServer as administrator, and it also login to the Windows 7 machine as administrator. I run the VB program as Administrator (right click - Run as Administrator).

In the Windows 7 machine I can go to Windows explorer and copy the file manually from the sServer machine to the Application.StartupPath folder.

View 7 Replies

Logon Failure :: Unknown User Name Or Bad Password?

Apr 25, 2012

When my application starts, one of the first thing it does is load a list box with data from an Excel file stored on our server.To prevent an issue I had with two or moreengineers trying to load the data from the same file at the same time, I added code that copied the Excel file to a temporary file (which is,hen, deleted when the data load is done).This has been working fine up until last week. Last week our company moved to a new building.The move included servers and all. Suddenly I'm getting inundatedwith complaints from engineers about my application.It seems that they started getting the following error

View 1 Replies

Monitoring When User Logon To System Fails

Jun 6, 2010

I have coded up a service, and I would like it to monitor when a user logon to the system fails. Is there an event I can handle for this? Or, a message that is broadcast? Or, is it possible to get the failed logon counter for the local system?

View 4 Replies

Webbrowser - Clients User Name's And Password That Will Be Used To Logon A Web Page

Feb 18, 2011

I created a program with all our clients user name's and password that will be used to log on a web page from our company so i can modify there settings. So far so good i created a form with a combo box to pick a name and then a simple click on the button opens form2 with a browser in it. This browser automatic logs on the page it loads. You should say mission accomplished and we are done........ not yet this stupid page got something nasty in it. If i want to open our clients reports it opens in a new browser and this is something i can't change. So basically what happens if i click the report it opens in the standard user defined browser installed on my machine. This means i get a log in screen again cause my session is in the VB.net browser.

Let me show the code i use at moment that i use to auto log on. For some reasons i did cut out the URL's out of my code. (privacy, security etc.)

Imports System
Imports System.Data
Imports System.Windows.Forms

[CODE]...

View 4 Replies

Get A Service "logon Username" Setting On A Remote Mach?

Feb 26, 2012

vb.net - how to get a service "logon username" setting on a remote machine so far i have this:

Dim localServices As ServiceController() = ServiceController.GetServices("myserver")
For Each localservice As ServiceController In localServices
ListBox1.Items.Add(localservice.DisplayName & " " & localservice.Status.ToString)
Next

View 3 Replies

Restart Service As User?

Feb 24, 2011

I would like to know if it's possible to stop | start | restart service as a User with a vb program?

The reason is that for some reason, I have to restart some service for a special application on certain station but the people who use them are log on as Admin and I can't go there each time or use vnc.

View 2 Replies

.net User Registration With SQL Service Database?

Jun 2, 2011

I want to create a log in and registration form in VB connecting to a sql database.

Databse Name: Users
Table Name: UserDetails
Table Fields: ID, Username, Password

The ID field was specifed as primary and self incrementing by 1 and the table has one username and password (being Id: 1, Username: peter, Password: admin). The Login form works, it checks to see if the user exists, if they do, they gain access, if not a message box is displayed. The Registration form however does not and I have no idea why, its probably something simple but yeah, hence the reason Im here! When I register I can add a user fine, and it wont allow me to add the same user, but when I look at the table, it is not updated :S and I have no idea why!! Even after registering the user closing the application and starting again, say I registered the following:

Username: Fred
Password: 123

Then I login with these credentials, it works. When I close the program and reopen the program, it still works and will not allow me to register a new user being Fred, 123. However after 3 or 4 minutes when I try again, the user no longer exisits and I can re-register with set credentials? The code is shown below (1st the login form that works, second the registration that doesnt).

Public Class Login
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Dim connection As New SqlClient.SqlConnection("Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|Users.mdf;Integrated Security=True;User Instance=True")

[code]....

View 5 Replies

Detect User Log On From A Windows Service

Jan 28, 2011

Is there for my .Net application to detect if a user has logged on? It is a Windows Service, so it will be running before logon.What I want to do is display a "popup" when a user logs on to tell them the status of the application

View 2 Replies

Optimal Way For A Service To Interact With User

Feb 10, 2011

My application needs to be a service (it needs run regardless of whether a user is logged on), but I also need some sort of client control/oversight over what it is doing. What is the optimal way to do this?Write a separate application to communicate with the service application - I see that as best solution in terms of stability, since the applications will be decoupled somewhat Use callbacks on system events in the service application to load UI forms directly from the service application - I see this as being easier to deploy.

View 2 Replies

.net - WCF Service Hosted In A Managed Windows Service Connect Using A WCF Service Application

Jul 14, 2011

i have a Windows service that is hosting a WCF service through net.tcp and this is working great. I have also created a WCF service application. I am trying to add the net.tcp service reference to the service application. Then I add it to the GAC that goes ok but if I try to RegAsm the WCF service application to allow it to be called from Server.CreateObject I get the error:

Warning: Type library exporter encountered a type that derives from a
generic class and is not marked as
[ClassInterface(ClassInterfaceType.None)]. Class interfaces cannot be
exposed for such types. Consider marking the type with
[ClassInterface(ClassInterfaceType.None)] and exposing an explicit
interface as the default interface to COM using the
ComDefaultInterface attribute.

It does not work. I have tried to call it through a class library but this does not work either as the end point is not set correctly.

View 1 Replies

Allow User To Input A Value During The Msi Installation Of A Windows Service?

Feb 1, 2012

I currently have a windows service that is packaged up as an msi installer. However, during the installation i need the user to input their required filepath (to string) location. The filepath variable currently resides in my component class called MyNewService that is inherited from System.ServiceProcess.ServiceBase.

Is there anyway i can allow the user to define the filepath variable during installation?

View 1 Replies

C# - Launch A Process In A User's Session From A Service?

Jun 27, 2010

In Windows Vista/7/2008/2008R2, is it at all possible to launch a process in a user's session from a service? Specifically, the local session would be most useful.Everything I've been reading seems to say this isn't possible, but I figured I'd ask here before giving up completely.My service signs on as Local System.

View 3 Replies

C# - Web Service Do Not Return Current Windows User Name

Jan 26, 2010

This is the function that I use in web service for getting current windows user.

<WebMethod()> _
Function User() As String
Dim p() As String = Split(My.User.Name, "")

[code]....

When I run service on localhost it realy return current windows user name!The problem is when i run service from remote PC, in that case I got nothing from this function. What is problem with this service, and how I can get name of Windows user?

View 4 Replies

Possible To Programmatically Set The User Account For A Windows Service?

Aug 5, 2009

I have created a windows service that has the Account set to user. Which means that when I install the service I need to pass a user name and password. Is there a way to set these maybe in the ProjectInstaller class maybe in the BeforeInstall event? if so HOW?

View 6 Replies

Starting Windows Service As Standard User

Aug 4, 2010

My app (which runs ok as a standard user) requires updates to be installed, but I don't want to have to input the administrator username/password each time nor do I want to increase user privileges to administrator.

I have a windows service which handles the downloading of updates etc (running as Local System) but the start command needs to come from the main app (running as a standard user). This is not permitted and I get Access Denied.

I understand why this is happening but is there an alternative way to achieve this? I want to handle program updates as the standard user without using ClickOnce or installing to a non Program Files folder.

View 3 Replies

VB Web Service - Redirect The User When Their Session Is Active?

Mar 15, 2012

I created a function that allows me to login to my web service. I created a session here and added some values I retrieved from a stored procedure.[code].....

My question is: I have a default.aspx and a master page, how can I redirect the user when their session is active? For example, the default page tells users that access is forbidden untill the login/register.Do I have to use the form load handler for default.aspx or the masterpages' load handler? How do I check weither the usersession is active?

View 1 Replies

VS 2008 Working With A Service - User Form?

Jun 25, 2009

I am jsut adding bits on to a Windows Service we are making here at our company, its an Asset Management tools with a few built in extras. It runs as a service on everyones machines but we can also do things like request a reboot etc through it.At the moment when We send a Reboot/shutdown etc command to it the Service on the machines calls 'C:WindowsSystem32Shutdown.exe' with the appropiate switches. This displays the windows shutdown warning to the users but nothing they can do about it.

What I was wondering if I create a seperate exe (or even better built into the service but I am not sure if this is possible) instead of the Service Calling 'shutdown.exe' it calls this form up to the user which states that we have requested a reboot etc but there is a 'Cancel' option. The Cancel can just end the form/program and nothing more, if the timeout that we specify is reached then that form/program then calls shutdown exe for an instant shutdown.

I know that the Service runs in a different user Space and we have no telling of who is logged on to that machine so I will need a way to just launch the form to any logged on users. Doesn't matter to much if there is no one logged onto the machine but if it does display this form while noone is logged on that is not a big deal.

View 7 Replies

Windows Service Access To User Files?

Aug 1, 2010

I've been developing in .NET (VB, C++, C#) for a number of years, but I am finally creating my first service application (in VB). I need to read/write to a file contained within a user's documents. As a service is not associated with a particular user, would a service have access to a user's documents? ...regardless if that user is signed on or not?

View 2 Replies

Windows Service Detecting User Log Off Event?

Aug 15, 2011

Recently while I was playing with VS 2008(VB), I have created an application for folder sync purpose... which is working fine. Then, I have created a windows service that does the same thing and it is also working fine(from application perspective). But, I have been trying to add some additional functionality to that new service. It keeps on running as long as System is ON.

But I would like to change the functionality to... as soon as user logs off Service should STOP, and should START when user logs into that PC. I tried to find some useful info online(related to my task) and all I could come up with was to add OnSessionChange(...) method to the service. But for some reason it is not working out for me(when I've logged off or other system events such as 'system lock').

[Code]...

View 3 Replies

Xml - Allow User To Input Value During On Start Of A Windows Service?

Feb 2, 2012

I need to get the user input for where they want the files that will be produced by my windows service to be stored.

I was thinking that i could do this by reading in the user's input to a variable in the on start event of my service? this variable is then later used in my xml writer.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved