active questions tagged windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:12:47Z http://stackoverflow.com/feeds/tag/windows http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903508/vbscipt-logon-script-evaluate-two-items-and-map-shares-accordingly 0 VBSCipt LOGON Script - Evaluate two items and map shares accordingly David 2009-12-14T21:07:53Z 2009-12-14T21:07:53Z <p>Hi:</p> <p>Its my first post here. I have a logon script mapping user drives Windows Network. Some users are now logging into a terminal server these days and I'd like to map a different drive, based on computer name they are logging in to.</p> <p>I am looking at which user AD group they are in (departmental group so I know which shares to map)</p> <p>If IsAMemberOf(objNetwork.UserDomain,objNetwork.UserName,"Sales Dept. Users - Acton") Then MapIt "G:","\phillip\sales"</p> <p>I need to now evaluate what the computer name is as well.</p> <p>The basic logic is : If user is in "Sales" group from this computer "bur-ts-01", then map this share \bur-fil-01\sales else, if user is in "Sales" group use \phillip\sales</p> <p>Its a fairly comprehensive script mapping drives, printers, etc... our VBScript person is long gone however and remote users are not able to access a local share to the TS server as a result.</p> <p>Can anyone offer any suggestions or sample code that I could review?</p> <p>Thank you David SW Florida</p> http://stackoverflow.com/questions/1903414/how-to-implement-icmp-packet-handler-using-winsock-version-1-1 0 How to implement icmp packet handler using winsock version 1.1? Emma Jin 2009-12-14T20:52:16Z 2009-12-14T21:04:06Z <p>I am working on an very old application right now. I need to make change in this application to listen for coming icmp request and decide to reply or drop the packet (kind of access control on ICMP). The application is Winsock version 1.1 based. I tried different ways to create a socket and capture icmp packet using the socket. But none of my efforts worked.</p> <p>Can anyone help me out? Or is it totally impossible?</p> <p>Thank you very much for your answer.</p> http://stackoverflow.com/questions/1903357/net-use-lpt2-printerport 0 NET USE LPT2: printer_port tpierzina 2009-12-14T20:41:14Z 2009-12-14T20:41:14Z <p>This I understand:</p> <pre><code>net use P: \\SOME_COMPUTER\SOME_SHARE net use P: \\1.2.3.4\SOME_SHARE </code></pre> <p>(the second argument is a logical share on the given computer)</p> <p>This, I do NOT understand:</p> <pre><code>net use LPT2: IP_1.2.3.4 </code></pre> <p>(where IP_1.2.3.4 is the name of a "port" assigned to a printer; the IP is a valid and responding device, but the full string "IP_1.2.3.4" is not)</p> <p>Can anyone tell me, is there ever a syntax of NET USE that could operate on a printer port like that? I can't get it to work, can't find anything via Google, and am practically in tears.</p> <p>[Sorry if this is cheating, this is basically a re-post of <a href="http://stackoverflow.com/questions/1884235/old-school-windows-2000-printing-or-when-is-a-port-name-a-computer" title="an earlier question">http://stackoverflow.com/questions/1884235/old-school-windows-2000-printing-or-when-is-a-port-name-a-computer</a> but with the scope narrowed just to the main issue at hand.</p> http://stackoverflow.com/questions/1903275/c-keylogger-as-background-service-started-automatically-before-logon -9 C# KeyLogger as Background Service started automatically before logon [closed] Jhone 2009-12-14T20:25:41Z 2009-12-14T20:31:24Z <p>Hi every one. I want to develop a C# KeyLogger application which don't have any UI, and it automatically runs in background before logon, and it also record username and password of window.</p> http://stackoverflow.com/questions/1902910/minimal-production-django-server-on-windows 0 Minimal production Django server on Windows Marc 2009-12-14T19:19:25Z 2009-12-14T20:25:37Z <p>Hi,</p> <p>I need to deploy a small Django app to be used in a small intranet. Concurrency and speed are non issues because there will be, at most, 10 users (and I bet that there will be almost no concurrency).</p> <p>There is already a MySQL server. The problem is with the Django app. What is the most lightwieght server I can install under a WinXP environment ? The Apache + mod_python approach seems a little overkill. The cherrypy server seems more suitable.</p> <p>Any suggestions ? Someone with similar experiences ?</p> http://stackoverflow.com/questions/1866865/how-can-i-show-perl-console-output-in-a-gui 5 How can I show Perl console output in a GUI? Jazz 2009-12-08T13:07:22Z 2009-12-14T20:15:57Z <p>I have several simple Perl programs writing to the standard output, but this has some problems :</p> <ul> <li>some of my users are scared by a console</li> <li>my users works on Windows, so my program output is displayed on a <code>cmd</code> console, so I cannot control the way it is displayed (colors and terminal size), and worse, the console is not resizeable (at least in width)</li> </ul> <p>To solve these problems, I would like to be able to display the output in a simple GUI interface as an option. The GUI should be responsive until the program finishes (it should be possible to scroll or resize the window while it's running).</p> <p>What the simple toolkit and widget I can use to do this? (I develop on Windows with ActivePerl).</p> http://stackoverflow.com/questions/1903023/c-how-to-execute-an-application-from-windows-service -1 C# How to execute an application from windows service Jhone 2009-12-14T19:44:25Z 2009-12-14T20:08:28Z <p>Dear All</p> <p>I have window XP 2003 server, which is placed in a room where no one can enter to logon it.</p> <p>for monitoring some applications I created a consol application myServer.exe, which dont have any UI, I want that this application (e.g., myServer.exe) start automatically as window bootup (e.g., before window logon)</p> <p>and I need to do this work using windows service.</p> <p>need your help. (note: please dont suggest me any other solution, I need to use windows service to accompalish this task)</p> http://stackoverflow.com/questions/1614898/running-python-from-the-windows-command-line 0 Running Python from the Windows Command Line dave.j.lott 2009-10-23T17:33:07Z 2009-12-14T20:06:35Z <p>How do I run a Python file from the Windows Command Line (<code>cmd.exe</code>) so that I won't have to re-enter the code each time?</p> http://stackoverflow.com/questions/851010/how-do-i-check-if-a-disk-is-in-a-drive-using-python 3 How do I check if a disk is in a drive using python? Electrons_Ahoy 2009-05-12T03:20:00Z 2009-12-14T19:11:18Z <p>Say I want to manipulate some files on a floppy drive or a USB card reader. How do I check to see if the drive in question is ready? (That is, has a disk physically inserted.)</p> <p>The drive letter <em>exists</em>, so os.exists() will always return True in this case. Also, at this point in the process I don't yet know any file names, so checking to see if a given file exists also won't work.</p> <p>Some clarification: the issue here is exception handling. Most of the win32 API calls in question just throw an exception when you try to access a drive that isn't ready. Normally, this would work fine - look for something like the free space, and then catch the raised exception and assume that means there isn't a disk present. However, even when I catch any and all exceptions, I still get an angry exception dialog box from Windows telling me the floppy / card reader isn't ready. So, I guess the real question is - how do I suppress the windows error box?</p> http://stackoverflow.com/questions/1902754/buckminster-svn 0 Buckminster + SVN Mark 2009-12-14T18:50:47Z 2009-12-14T18:50:47Z <p>I'm running Buckminster to build an OSGi application from an SVN repository, but I'm having trouble with the SVN provider. In particular I'm running into this error:</p> <pre><code>org.tigris.subversion.svnclientadapter.SVNClientException: org.tigris.subversion.javahl.ClientException: svn: authentication cancelled </code></pre> <p>I've browsed around on the <a href="http://osdir.com/ml/version-control.subversion.subclipse.user/2006-12/msg00033.html" rel="nofollow">web</a> to resolve the issue, but have been unable to get past this annoying issue. I've verified that the URL is accessible, that my authentication is good and that the information at the URL is correct. I tested accessibility/authentication with both SVN and my web browser, an in particular tested that the authentication was working by setting it to incorrect values and ensuring that Buckminster failed with a different error.</p> <p>To install Buckminster I downloaded the most recent <a href="http://www.eclipse.org/downloads/download.php?file=/tools/buckminster/products/director%5Flatest.zip" rel="nofollow">p2 director</a> and ran the following commands</p> <pre><code>director -r http://download.eclipse.org/tools/buckminster/headless-3.5/ -p Buckminster -d c:\e\bm\ -i org.eclipse.buckminster.cmdline.product -roaming -vmargs -D"eclipse.p2.mirrors=false" cd c:\e\bm buckminster install http://download.eclipse.org/tools/buckminster/headless-3.5/ org.eclipse.buckminster.core.headless.feature -vmargs -D"eclipse.p2.mirrors=false" buckminster install http://download.eclipse.org/tools/buckminster/headless-3.5/ org.eclipse.buckminster.pde.headless.feature -vmargs -D"eclipse.p2.mirrors=false" buckminster install http://download.cloudsmith.com/buckminster/external org.eclipse.buckminster.subclipse.headless.feature -vmargs -D"eclipse.p2.mirrors=false" </code></pre> <p>[as an aside, I've already tried not using <code>-vmargs -D...</code>, it's included here as I thought there was a <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=295696" rel="nofollow">bug</a> that it would resolve.]</p> <p>I've tried using subversive, but I run into a different problem where Subversive can't find the right SVN Connector, and an error is thrown telling me to use the GUI to edit the preferences. Since this is a <em>headless</em> build tool there's no GUI to edit such settings, and I can't find anything online that tells me how to get past this.</p> <p>Unlike the <a href="http://osdir.com/ml/version-control.subversion.subclipse.user/2006-12/msg00033.html" rel="nofollow">thread</a> I cited earlier, I've only run the bare minimum installs, and I'm still having this issue.</p> <p>Can anyone point me to a guide or some missing settings, or something I need to install/run in order to get this to work?</p> http://stackoverflow.com/questions/1902645/ackrc-on-windows 0 ackrc on Windows Jeremy Dunck 2009-12-14T18:33:17Z 2009-12-14T18:37:49Z <p>I'm using ack (the grep replacement) on Windows XP under Strawberry Perl. Where should the .ackrc config file be placed, since ~/.ackrc is not reasonable on Windows?</p> http://stackoverflow.com/questions/1902222/is-there-a-popular-tool-for-crawling-web-data 0 Is there a popular tool for crawling web data? MainID 2009-12-14T17:17:20Z 2009-12-14T17:31:51Z <p>I'm doing work on information extraction, and I need a tool to crawl data from web page , is there a popular one in windows?</p> http://stackoverflow.com/questions/1899959/uninstall-an-application-using-perl-in-windows 0 Uninstall an application using perl in windows PJ 2009-12-14T09:50:16Z 2009-12-14T17:00:21Z <p>Is it possible to uninstall an application in windows using Perl script</p> http://stackoverflow.com/questions/1901385/is-there-a-good-reason-to-limit-windows-filename-extentions-to-three-characters 2 Is there a good reason to limit Windows filename extentions to three characters? HMcG 2009-12-14T15:00:51Z 2009-12-14T16:46:56Z <p>I am creating a utility that will store data on flat file in a specific binary format. I want the filename extension to be specific to my application. Is there any reason other than the old 8.3 filename limit for restricting the extension to 3 characters, and if not, what is the limit? Can I have myfilename.MyExtensionSoHandsOffEverybodyElse ?</p> http://stackoverflow.com/questions/51054/batch-file-to-delete-files-older-than-n-days 4 Batch file to delete files older than N days Kibbee 2008-09-09T01:05:28Z 2009-12-14T16:44:47Z <p>I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've search around the web, and found some examples with hundreds of lines of code, and others that required installing extra command line utilities to accomplish the task. Similar things can be <a href="http://beta.stackoverflow.com/questions/25785/delete-all-but-the-most-recent-x-files-in-bash" rel="nofollow">done in BASH</a> in just a couple lines of code. It seems that something at least remotely easy could be done for batch files windows. I'm looking for a solution that works in a standard windows command prompt, without any extra utilities. Please no PowersHell or Cygwin either.</p> http://stackoverflow.com/questions/277288/what-is-the-windows-cmd-exe-equivalent-of-linux-bashs-the-program-exit-ret 4 What is the Windows/cmd.exe equivalent of Linux/bash's $? -- the program exit/return code? simonsharry 2008-11-10T07:30:56Z 2009-12-14T16:24:40Z <p>In Unix/bash, I can simply say:</p> <blockquote> <p>$ echo $?</p> </blockquote> <p>to find out the return/exit code of a program, both from interactive and non-interactive shells.</p> <p>Now, how can I do the equivalent in Windows/cmd.exe? </p> http://stackoverflow.com/questions/1901785/getting-rid-of-extensions-in-variables-cmd 0 Getting rid of extensions in variables (CMD) YourComputerHelpZ 2009-12-14T16:04:02Z 2009-12-14T16:23:23Z <p>CMD Q: I want to remove the extension of a filename.</p> <p>It is actually a complete path, like C:/Me/My/Path/filename.xxxx</p> <p>i know that the extension has 4 chars, like shown in example above.</p> <p>How can i get rid of the extension?</p> <p>Thanks.</p> http://stackoverflow.com/questions/218491/windows-server-2003-server-to-server-proxy-avoidance-configuration 1 Windows Server 2003 Server to Server proxy avoidance configuration david-raywood 2008-10-20T13:47:28Z 2009-12-14T16:04:51Z <p>Is it possible to configure Windows Servers that reside on the same domain such that when a web service call is made from a web app using an IP address, the request does not go via a proxy server?</p> <p>The web service is running on one of the servers on the domain. </p> <p>I want to configure IP based security on the server that hosts the web service such that it only allows connections from specific servers. Currently all requests go via the proxy server rendering IPSec problematic.</p> <p>Within the browser I can specify that requests following a specific pattern should bypass the proxy server. It's essentially this behaviour I want to replicate with the servers.</p> <p>Thanks</p> http://stackoverflow.com/questions/1901405/postgresql-wal-on-windows 0 Postgresql WAL on Windows Jeff Peck 2009-12-14T15:03:18Z 2009-12-14T15:48:14Z <p>I'm running Postgres 8.4 on Windows XP and I'm wondering if it is possible to move the WAL to a different disk? I have looked all over the place and can only find documentation on how to do this on Linux.</p> <p>Thanks in advance, Jeff</p> http://stackoverflow.com/questions/1814256/is-there-a-way-to-silently-or-automatically-install-net 8 Is there a way to silently or automatically install .Net? Jeremy Morgan 2009-11-29T00:27:21Z 2009-12-14T15:47:16Z <p>I am selling desktop software written in C#.Net to multiple clients, and having a huge problem: The .net install. The users of this software are not computer-savvy and usually don't have any version of the .net framework installed, and many times don't want it. </p> <p>Nearly every single one of my support requests is due to someone not installing .net. I have to remind each one of them to install the framework, and most of them say they hit "Cancel" on it because they don't want to install it. Many have even asked for refunds because they get confused and don't want to deal with it. They don't understand that it's required, and don't want to go to microsoft and download it. I'm losing a lot of time, and lot of money. </p> <p>But enough background, my question is: Can I silently install the .Net framework, legally so I can reduce the amount of support contacts? If i put some sort of disclaimer in saying the .net framework will be installed, would it be legal? I can make it install automatically of course, but the users are cancelling it, and not realizing that it renders the software inoperable. </p> <p>I know it sounds crazy and the obvious suggestions like "tell them that the .net install is required" have already been tried. I tell the customers 3 times in giant red fonts that it is required, yet they still don't read it. </p> <p>Any suggestions? I'm about ready to abandon C# and build my next products in Java or Delphi, that's how big this problem is becoming. </p> http://stackoverflow.com/questions/1897710/unicode-non-unicode-utf-8-problems 2 Unicode / Non-Unicode / UTF-8 Problems Canacourse 2009-12-13T20:57:21Z 2009-12-14T15:44:45Z <p>An application I am working on stores data in an INI file. The application creates the INI file which in turn will be read by another application we also created. The INI file may also be hand edited. </p> <p>It is likely sooner or later that the INI file will contain different languages so we were careful to ensure that all data used in this file was in unicode format. </p> <p>After creating the INI file initially We examined the file in notepad and noticed that the letter spacing was screwed up. After a bit of of research we discovered the Unicode Byte Order Mark (BOM) <code>FF FE</code> &amp; started writing this at the start of the file and all seemed well - The File was created correctly and could be hand edited in notepad. </p> <p>Now the problem - We went looking for an INI file parser instead of creating our own. Boost property Tree seemed ideal but it seems the BOM is not filtered out out by the underlying wifstream and eventually property tree throws an exception because of this.</p> <p>Next we tried SimpleINI <a href="http://code.jellycan.com/simpleini/" rel="nofollow">link text</a> but simpleINI (CSimpleIniW) does not seem to work unless the UTF-8 marker is at the start of the file. </p> <p>So far 2 seemingly well developed INI file processors will not work with our simple INI File so we started thinking we are taking the wrong approach. Apart from the obvious "Should have used XML" What real world advice can you offer on this problem? </p> <p>UPDATE:</p> <p>I have this working now. The BOM wasn't the problem. It was because the data was not stored in UTF8. Thanks.... </p> http://stackoverflow.com/questions/256365/what-ide-editor-do-you-use-for-ruby-on-windows 4 What IDE / Editor do you use for Ruby on Windows? Chris Pietschmann 2008-11-02T01:24:58Z 2009-12-14T14:08:07Z <p>The SciTE editor comes with the Ruby installer, and it's just a generic code editor. I installed FreeRIDE but it seems a little buggy; it actually just crashed on me for no reason. :(</p> <p>So my question is...</p> <p>What IDE / Editor do you use for Ruby on Windows? What are the best editors out there?</p> http://stackoverflow.com/questions/1577728/qt-equivalent-to-win32-fibers 0 Qt equivalent to Win32 Fibers. Chris Becke 2009-10-16T12:21:40Z 2009-12-14T13:55:24Z <p>I am responsible for a Windows application that loads up plugin "script" dll's written in c++.</p> <p>The application exposes an API based on Win32 fibers to allow the c++ 'scripts' in the plugin dlls to use 'yield' and 'resume' type calls - essentially co-routines - to sequence the dependencies in the scripts without resorting to an asynchronous event architecture.</p> <p>Now, I am looking at porting the app to Mac and or Linux, and the option of using a framework like Qt has come up.</p> <p>Qt however seems only to support proper asynchronous threads, not lightweight synchronous threading primitives similar to Win32 fibers.</p> <p>Is there a Win32 Fibera analog on Cocoa, or in a crossplatform framework like Qt?</p> http://stackoverflow.com/questions/636850/register-dll-in-gac-without-assembly-manifest 2 Register DLL in GAC without Assembly Manifest tsilb 2009-03-12T00:03:18Z 2009-12-14T12:59:37Z <p>I have a DLL I wish to register with my GAC. I enter the command:</p> <pre><code>gacutil /i c:\temp\msvcr100.dll </code></pre> <p>and I get the error: <PRE>Failure adding assembly to the cache: The module was expected to contain an as sembly manifest.</PRE></p> <p>All I have is the DLL. Is there a way to create / fake / bypass it?</p> <p>For those interested, I am attempting to extract the Visual Studio 2010 &amp; .NET 4.0 CTP from the VHD and run it on my physical box. As a side note, has this been attempted?</p> http://stackoverflow.com/questions/1135057/writeprocessmemory-to-system-process-with-sedebugprivilege-enabled-c-vista 4 WriteProcessMemory to SYSTEM process with SeDebugPrivilege enabled. (C, Vista) pcorey 2009-07-16T01:56:43Z 2009-12-14T12:26:30Z <p>Hi, I'm interested in injecting DLLs into SYSTEM owned processes on my Vista machine. I'm going about this using the traditional method of VirtualAllocEx, WriteProcessMemory and CreateRemoteThread. However, because this will be operating on SYSTEM processes, I enable SeDebugPivilege on the injecting process before opening the target process.</p> <pre><code> int EnableDebugPriv(LPCTSTR name) { HANDLE hToken; LUID luid; TOKEN_PRIVILEGES tkp; if(!OpenProcessToken(GetCurrentProcess(), /*TOKEN_ADJUST_PRIVILEGES|TOKEN_QUERY*/ TOKEN_ALL_ACCESS, &hToken)) return 0; if(!LookupPrivilegeValue(NULL,name,&luid)) return 0; tkp.PrivilegeCount=1; tkp.Privileges[0].Luid=luid; tkp.Privileges[0].Attributes=SE_PRIVILEGE_ENABLED; if(!AdjustTokenPrivileges(hToken,false,&tkp,sizeof(tkp),NULL,NULL)) { printf("!AdjustTokenPrivileges - %d\n",GetLastError()); return 0; } if(GetLastError()==ERROR_NOT_ALL_ASSIGNED) { return 0; } CloseHandle(hToken); return 1; } </code></pre> <p>Where the <code>SE_DEBUG_NAME</code> constant is passed as name.</p> <p>After enabling SeDebugPrivilege, I go through the process of opening the target process, locating LoadLibrary, allocating space, writing the DLL path to memory, and creating the thread (checking all return values along the way):</p> <pre><code> if(NULL==(p=OpenProcess(PROCESS_ALL_ACCESS,FALSE,(DWORD)pid))) ... if(NULL==(loadLib=(LPVOID)GetProcAddress(GetModuleHandle("kernel32.dll"), "LoadLibraryA"))) ... if(NULL==(dllBuff=(LPVOID)VirtualAllocEx(p, NULL, strlen(dllPath)+1, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE))) ... if(NULL==WriteProcessMemory(p, (LPVOID)dllBuff, dllPath, strlen(dllPath), &written)) ... if(!CreateRemoteThread(p, NULL, NULL, (LPTHREAD_START_ROUTINE)loadLib, (LPVOID)dllBuff, NULL, NULL)) ... </code></pre> <p><code>dllPath</code> is a char* of the DLL's path (obviously), and <code>pid</code> is the PID of the target process. Both of these values are taken in through the command line and validated before being used.</p> <p>The problem I'm having is that nothing is returning errors until CreateRemoteThread, which is returning an 8 ("Not enough storage"). HOWEVER, WriteProcessMemory is NOT writing any bytes to the process. After the call the written variable is always 0. No bytes are being written, but the function is not failing. I'm not sure why this is happening. I looked into other privileges, like the SeRestorePrivilege which promises write access to all processes, but nothing works.</p> <p>I'm executing this program with Administrator rights.</p> <p>Note: this WriteProcessMemory and CreateRemoteThread problem only happen when I run this program against higher privileged users (SYSTEM, LOCAL SERVICE, etc...). It works perfectly against a program owned by me (same privileges).</p> <p>Edit: Here's a link to the whole source. <a href="http://pastebin.com/m77110d8e" rel="nofollow">http://pastebin.com/m77110d8e</a> There's not much else there besides basic error checking, but maybe it will help?</p> http://stackoverflow.com/questions/1896294/how-to-change-the-window-style-of-a-form-outside-your-app 0 how to change the window style of a form outside your app? behrooz 2009-12-13T11:59:03Z 2009-12-14T11:41:07Z <p>how to change the window style of a form outside your app?hard question?<br> i am actually trying to move a form witch is topmost and has no border.<br> i have the handle(hWnd) of the window.<br> i can write thousands of lines of code if guaranteed to work.</p> http://stackoverflow.com/questions/1900258/communicating-with-usb-device 0 Communicating with USB device rkrishnan 2009-12-14T11:06:30Z 2009-12-14T11:29:47Z <p>I am working on building a USB Video Class camera, which is supposed to work well with various flavours of Windows. The camera needs firmware upgrade support to upload new software images into it. There are two ways to do it, as far as I know.</p> <ol> <li>Use DFU.</li> <li>Use control endpoint of the UVC Class device to transfer bytes into the device. </li> </ol> <p>To use the second option, it looks like, one needs to write a Filter Driver. Is this correct? Is there any other way to accomplish this task?</p> http://stackoverflow.com/questions/1899848/html-link-to-directory-in-a-samba-share-that-works-on-internet-explorer-7-8 0 HTML link to directory in a Samba share, that works on Internet Explorer 7/8 Nicolas Raoul 2009-12-14T09:19:58Z 2009-12-14T11:03:54Z <p>Hello all,</p> <p>I want my HTML page to link to a directory in a Samba share (protocol SMB/CIFS Windows share). In my HREF I wrote <code>file:///\\server\Share2\folder3</code></p> <p>Most browsers handle it fine (mount the share and open a file manager on folder3) except Internet Explorer 7 and Internet Explorer 8, which says <code>Permission denied</code> without even asking for a password. What should I write in the HREF for IE7/8 to be able to open folder3?</p> <p>Notes: <li>Actually this works fine if the path does <b>not</b> contain the <code>folder3</code> part.</li> <li>It works fine if the share is already mounted. So if you test it, type "net use" to make sure that no share is already mounted.</li> <li>The Windows username and the share username are not the same, so a popup should ask for a login/password. Again, this works fine if the path does <b>not</b> contain the <code>folder3</code> part.</li> <li>For the curious: I am doing this to try and fix a bug in an open source software.</li></p> http://stackoverflow.com/questions/118205/how-can-i-publish-a-subversion-repository-to-a-local-iis 2 How can I publish a subversion repository to a local IIS? jdecuyper 2008-09-22T23:24:23Z 2009-12-14T10:32:17Z <p>At work, we have a windows server 2003 with IIS and Subversion installed. We use it to publish and test locally our ASP.NET websites. Every programmer has Tortoise installed on his PC and can update/commit content to the server. Hosting the repositories is working fine. But the files kept in those repositories needs then to be copied to our local IIS (virtual directories). </p> <p>What is an easy way to publish those subversion repositories to our local IIS?</p> <p>Edit:<br /> Thanks to <a href="http://stackoverflow.com/users/14312/puetzk">puetzk</a> I added a simple bat file that gets executed every time a commit occurs (check the <a href="http://svnbook.red-bean.com/nightly/en/svn.reposadmin.create.html" rel="nofollow">subversion documentation</a> about hooks). My bat file only contains: </p> <pre><code>echo off setlocal :: Localize the working copy where IIS points) pushd E:\wwwroot\yourapp\trunk :: Update your working copy svn update endlocal exit </code></pre> http://stackoverflow.com/questions/578813/richtextbox-color-selected-lines 2 RichTextBox color selected lines Picflight 2009-02-23T18:47:53Z 2009-12-14T10:22:39Z <p>Hello,</p> <p>I am new to windows Forms. I am using VS 2008, C# to write a RichTextBox. I want to be able to color each line with a different color as I write to the RichTextBox. Can someone point me to samples. Thanks</p> <pre><code>foreach (string file in myfiles) { // As I process my files // richTextBox1.Text += "My processing results"; if(file == "somefileName") { // Color above entered line or enter new colored line } } </code></pre>