User Neverrav - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:26:11Z http://stackoverflow.com/feeds/user/6698 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62501/remote-installing-of-windows-service 0 Remote installing of windows service Neverrav 2008-09-15T12:49:41Z 2009-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, &amp;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#325502 0 Answer by Neverrav for Visual Studio 2008 Installer Project - Custom Actions not firing Neverrav 2008-11-28T11:06:05Z 2008-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#224805 0 Answer by Neverrav for Splitting WPF interface across multiple Xaml files Neverrav 2008-10-22T08:07:01Z 2008-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> &lt;Window&gt;<br /> &lt;VeryBigControl&gt;<br /> &lt;VeryBigControl.Style&gt;<br /> ... &lt;!--very long style--&gt;<br /> &lt;/VeryBigControl.Style&gt;<br /> .. &lt;!--content of very big control--&gt;<br /> &lt;/VeryBigControl<br /> &lt;/Window&gt; </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#221193 5 Answer by Neverrav for How to run C/C++ in a Unix console/Mac terminal? Neverrav 2008-10-21T08:46:38Z 2008-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#204294 3 Answer by Neverrav for A working Drag&Drop enabled ListView implementation for WPF? Neverrav 2008-10-15T10:48:07Z 2008-10-15T10:48:07Z <p>Drag&amp;drop is not SO hard, really :) try reading this http://www.beacosta.com/blog/?p=53 post on drag&amp;drop. </p> http://stackoverflow.com/questions/115031/problem-with-converting-enumerations-in-c-cli 2 Problem with converting enumerations in C++\CLI Neverrav 2008-09-22T14:05:52Z 2008-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-&gt;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#114935 0 Answer by Neverrav for Remote installing of windows service Neverrav 2008-09-22T13:46:16Z 2008-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 -7 Answer by Neverrav for Perks for new programmers Neverrav 2008-09-19T11:38:57Z 2008-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#101216 0 Answer by Neverrav for Remote installing of windows service Neverrav 2008-09-19T11:34:02Z 2008-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>