User Neverrav - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:26:11Zhttp://stackoverflow.com/feeds/user/6698http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62501/remote-installing-of-windows-service0Remote installing of windows serviceNeverrav2008-09-15T12:49:41Z2009-06-25T23:16:19Z
<p>I need to remotely install windows service on number of computers, so I use CreateService() and other service functions from winapi. I know admin password and user name for machines that I need access to. In order to gain access to remote machine I impersonate calling process with help of LogonUser like this: </p>
<pre><code>//all variables are initialized correctly
int status = 0;
status = LogonUser(lpwUsername,
lpwDomain,
lpwPassword,
LOGON32_LOGON_NEW_CREDENTIALS,
LOGON32_PROVIDER_DEFAULT,
&hToken);
if (status == 0)
{
//here comes a error
}
status = ImpersonateLoggedOnUser(hToken);
if (status == 0)
{
//once again a error
}
//ok, now we are impersonated, do all service work there
</code></pre>
<p>So, I gain access to machine in a domain, but some of computers are out of domain. On machines that are out of domain this code doesn't work. Is there any way to access service manager on machine out of domain?</p>
http://stackoverflow.com/questions/321867/visual-studio-2008-installer-project-custom-actions-not-firing/325502#3255020Answer by Neverrav for Visual Studio 2008 Installer Project - Custom Actions not firingNeverrav2008-11-28T11:06:05Z2008-11-28T11:06:05Z<p>Set <pre><code>InstallerClass</code></pre> property to 'false'.</p>
http://stackoverflow.com/questions/224765/splitting-wpf-interface-across-multiple-xaml-files/224805#2248050Answer by Neverrav for Splitting WPF interface across multiple Xaml filesNeverrav2008-10-22T08:07:01Z2008-10-22T08:07:01Z<p>Use styles and user controls. Divide your interface on smaller parts and code them in another xaml files.
Example:</p>
<p><code>
<Window><br />
<VeryBigControl><br />
<VeryBigControl.Style><br />
... <!--very long style--><br />
</VeryBigControl.Style><br />
.. <!--content of very big control--><br />
</VeryBigControl<br />
</Window>
</code> </p>
<p>divide it into three xaml files:<br />
Window.xaml - this will be Window<br />
VeryBigControl.xaml - this will be UserControl<br />
VeryBigControlStyle.xaml - this will be resource dictionary<br />
and so on :)</p>
http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221193#2211935Answer by Neverrav for How to run C/C++ in a Unix console/Mac terminal?Neverrav2008-10-21T08:46:38Z2008-10-21T08:46:38Z<p>gcc main.cpp -o main.out<br />
./main.out</p>
http://stackoverflow.com/questions/204289/a-working-dragdrop-enabled-listview-implementation-for-wpf/204294#2042943Answer by Neverrav for A working Drag&Drop enabled ListView implementation for WPF?Neverrav2008-10-15T10:48:07Z2008-10-15T10:48:07Z<p>Drag&drop is not SO hard, really :) try reading this http://www.beacosta.com/blog/?p=53 post on drag&drop. </p>
http://stackoverflow.com/questions/115031/problem-with-converting-enumerations-in-c-cli2Problem with converting enumerations in C++\CLINeverrav2008-09-22T14:05:52Z2008-09-22T14:22:13Z
<p>I have an assembly, written in C++\CLI, which uses some of enumerations, provided by .Net. It has such kind of properties: </p>
<pre><code>property System::ServiceProcess::ServiceControllerStatus ^ Status
{
ServiceControllerStatus ^ get()
{
return (ServiceControllerStatus)_status->dwCurrentState;
}
}
</code></pre>
<p>it works fine, but when i use this assembly from my C# code, type of this property is </p>
<pre><code>System.Enum
</code></pre>
<p>and i have to make type-cast</p>
<pre><code> if ((ServiceControllerStatus)currentService.Status == ServiceControllerStatus.Running)
//do smth
</code></pre>
<p>The question is simple: why is it so, and how to fix it ?</p>
http://stackoverflow.com/questions/62501/remote-installing-of-windows-service/114935#1149350Answer by Neverrav for Remote installing of windows serviceNeverrav2008-09-22T13:46:16Z2008-09-22T13:46:16Z<p>OK, problem resolved (not really very good, but rather OK). I used WNetAddConnection() to ipc$ on remote machine. </p>
http://stackoverflow.com/questions/96501/perks-for-new-programmers/101243#101243-7Answer by Neverrav for Perks for new programmersNeverrav2008-09-19T11:38:57Z2008-09-19T11:38:57Z<p>only two things:<br />
1) they must realise that they know nothing<br />
2) they should listen to what more experienced people say and try to improve themselves<br />
how simple :)</p>
http://stackoverflow.com/questions/62501/remote-installing-of-windows-service/101216#1012160Answer by Neverrav for Remote installing of windows serviceNeverrav2008-09-19T11:34:02Z2008-09-19T11:34:02Z<p>this doesn't work<br />
I will be really very glad if you show me where i'm wrong. I call to OpenSCManager in place that i marked with the commentary in question.<br />
SC_HANDLE schManager = OpenSCManager(lpwMachineName, NULL, SC_MANAGER_ALL_ACCESS);
and get ERROR_ ACCESS _DENIED</p>