<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Comment Feed for Single Session per User - Remote Desktop (TechOff on Channel 9)</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/forums/techoff/477262-single-session-per-user-remote-desktop/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Comment Feed for Single Session per User - Remote Desktop (TechOff on Channel 9)</title><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/</link></image><description>Single Session per User - Remote Desktop</description><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/</link><language>en-us</language><pubDate>Tue, 14 Jul 2009 15:34:57 GMT</pubDate><lastBuildDate>Tue, 14 Jul 2009 15:34:57 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Re: Re: Re: Re: Re: Re: Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;the thing is a single app instance no matter who and about the script... yep I&amp;nbsp;just did it!&lt;/p&gt;
&lt;p&gt;here I post the code in Powershell 1.0, hope is useful for other people.&lt;/p&gt;
&lt;p&gt;#############################&lt;/p&gt;
&lt;p&gt;[string]$user="HDTS"&lt;br /&gt;[int]$session=0&lt;br /&gt;&lt;br /&gt;$p=[System.Diagnostics.Process]::GetCurrentProcess()&lt;br /&gt;[string]$cur_user=[System.Environment]::UserName&lt;br /&gt;[int]$cur_session=$p.SessionId&lt;br /&gt;if($cur_user -eq $user)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;if($cur_session -eq $session)&lt;br /&gt;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;write-host "Starting Applications"&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;amp; 'C:\prog1.exe'&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;amp; 'C:\prog2.exe'&lt;br /&gt;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;else&lt;br /&gt;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;[System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")&lt;br /&gt;&amp;nbsp;&amp;nbsp;[System.Windows.Forms.MessageBox]::Show(@("The account $user can only be used with MSTSC /CONSOLE or MSTSC /ADMIN"), [System.Environment]::MachineName, [System.Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::Error);&lt;br /&gt;&amp;nbsp;}&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&amp;nbsp;&lt;br /&gt;&amp;nbsp;if($cur_session -eq $session)&lt;br /&gt;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;[System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")&lt;br /&gt;&amp;nbsp;&amp;nbsp;[System.Windows.Forms.MessageBox]::Show("You just replaced the replace the account of the user $user. Log off inmediately and log on as $user usando MSTSC /CONSOLE o /ADMIN", [System.Environment]::MachineName, [System.Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::Error);&lt;br /&gt;&amp;nbsp;}&lt;br /&gt;}&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478728</link><pubDate>Tue, 14 Jul 2009 15:34:58 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478728</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478728/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>the thing is a single app instance no matter who and about the script... yep I&amp;nbsp;just did it!
here I post the code in Powershell 1.0, hope is useful for other&amp;#8230;</evnet:previewtext><dc:creator>raptor3676</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478728/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Re: Re: Re: Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;I'm confused. Do you only want 1 single copy to possibly run, or only 1 per user that might be trying to run it?&lt;/p&gt;
&lt;p&gt;Either way, it can probaly solved most easily&amp;nbsp;with a stub checking whether or not you are running in Session 0 before launching the app. If you only want 1 possible copy, insist that it runs in Session 0 (i.e. via /admin or /console). Otherwise a combination of the GP setting and a refusal to run in Session 0 would do it. It's a dirty hack but it'll sort of work.&lt;/p&gt;
&lt;p&gt;The alternative is one big global mutex, or a global mutex which partially incorporates the user name if you only want one copy to launch per user.&lt;/p&gt;
&lt;p&gt;Or you could, you know, just tell users not to launch it from within&amp;nbsp;a /console session 'cos it breaks stuff. Us ops guys are kinda used to rubbish software apps that don't behave 100% as they should.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478619</link><pubDate>Tue, 14 Jul 2009 05:21:56 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478619</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478619/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm confused. Do you only want 1 single copy to possibly run, or only 1 per user that might be trying to run it?
Either way, it can probaly solved most easily&amp;nbsp;with a stub checking whether or not you are running in Session 0 before launching the app. If you only want 1 possible copy, insist that&amp;#8230;</evnet:previewtext><dc:creator>AndyC</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478619/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Re: Re: Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;Well I'm not sure that screen-scrape is need here all the users need to check is that the app(s) are live and kicking and they can do that just by looking at the UI if it is dead, kill it (Task Man) a restart it no further acction is required.&amp;nbsp; The rest of the information is (verbosely) logged to files.&lt;/p&gt;
&lt;p&gt;I tried alternative solutions&amp;nbsp;here, I even&amp;nbsp;managed to scrap half of those apps.&amp;nbsp; The part that actually handles the transport and persistance part for&amp;nbsp;3rd party systems I rewrote it entirely in C#, it can now safely run as a service, I made it more resilient a various levels,&amp;nbsp;it has&amp;nbsp;been in production for&amp;nbsp;quite some&amp;nbsp;time now as smooth as silk.&amp;nbsp; In fact I earned a gigantic bonus because of that&amp;nbsp;[H]&lt;/p&gt;
&lt;p&gt;However the rest of that suite (POC is a better term), handles the business logic, not to mention that it is supported/maintained by our&amp;nbsp;headquarters in Europe.&amp;nbsp; And this time I had to agree with my boss and rule out a replacement because it's too risky.&amp;nbsp; Unexpected behavior for the rest of the solution, and non-company-standard implementation, is on top of my list.&lt;/p&gt;
&lt;p&gt;Anyway, I even tried the scrapping-the-damned-POS approach, and took it as far as I could go.&amp;nbsp; But that still left us struggling with the "&lt;em&gt;really 1 instance has to run 7x24 no matter who is on the box&lt;/em&gt;" problem ;) I don't know if that can be accomplished by the RDP client app you mentioned.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478591</link><pubDate>Tue, 14 Jul 2009 00:24:51 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478591</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478591/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Well I'm not sure that screen-scrape is need here all the users need to check is that the app(s) are live and kicking and they can do that just by looking at the UI if it is dead, kill it (Task Man) a restart it no further acction is required.&amp;nbsp; The rest of the information is (verbosely) logged&amp;#8230;</evnet:previewtext><dc:creator>raptor3676</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478591/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Re: Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;SO I guess here is the "$64,000.00" question: is there any way to screen-scrape a windows app?&lt;/p&gt;
&lt;p&gt;we can do things like SendKeys to pipe input into the app but then what about the display?&lt;/p&gt;
&lt;p&gt;OR write a custom RDP client app, grab the app window and the child windows and dialogs and show only them in an RDP session.&lt;/p&gt;
&lt;p&gt;then you can pipe mouse and keyboard into the app when needed. or make it a Read-Only screen for some uses...&lt;/p&gt;
&lt;p&gt;not simple but could be done.&lt;/p&gt;
&lt;p&gt;i wonder if there are any screen scrapers that work on windows apps? I know there are some tools that take like vt-100 screens and read the text but this is windows / graphics here...&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478572</link><pubDate>Mon, 13 Jul 2009 22:32:52 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478572</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478572/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>SO I guess here is the "$64,000.00" question: is there any way to screen-scrape a windows app?
we can do things like SendKeys to pipe input into the app but then what about the display?
OR write a custom RDP client app, grab the app window and the child windows and dialogs and show only them in an&amp;#8230;</evnet:previewtext><dc:creator>figuerres</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478572/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;You just nailed it!&lt;/p&gt;
&lt;p&gt;And yes to use VM have come across my mind a couple of times, however I need to be careful to minimize any posible impact.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478411</link><pubDate>Sun, 12 Jul 2009 23:18:10 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478411</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478411/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>You just nailed it!
And yes to use VM have come across my mind a couple of times, however I need to be careful to minimize any posible impact.</evnet:previewtext><dc:creator>raptor3676</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478411/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;I see ... you have a legacy POC (Pice Of Crap) &amp;nbsp;to try and manage... and it was not designed to run on a "server" environment... sucks.&lt;/p&gt;
&lt;p&gt;so really 1 instance has to run 7x24 no matter who is on the box *BUT* you need a few users to be able to access that app w/o giving that user Admin rights to the server ... is that right?&lt;/p&gt;
&lt;p&gt;i am wondering if there is some way to run it in a Virtual Box but capture the screen and keyboard I/O and then write a service around that to then allow you to make it into a proper service that you can attach clients to... a really ugly hack around but might just do what you need to do and give you better ways to deal with it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478396</link><pubDate>Sun, 12 Jul 2009 21:55:48 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478396</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478396/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I see ... you have a legacy POC (Pice Of Crap) &amp;nbsp;to try and manage... and it was not designed to run on a "server" environment... sucks.
so really 1 instance has to run 7x24 no matter who is on the box *BUT* you need a few users to be able to access that app w/o giving that user Admin rights to&amp;#8230;</evnet:previewtext><dc:creator>figuerres</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478396/Trackback.aspx</trackback:ping></item><item><title>Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;not sure if something like application virtualization would fit here:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/systemcenter/appv/default.mspx"&gt;http://www.microsoft.com/systemcenter/appv/default.mspx&lt;/a&gt;&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478362</link><pubDate>Sun, 12 Jul 2009 18:15:04 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478362</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478362/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>not sure if something like application virtualization would fit here:
http://www.microsoft.com/systemcenter/appv/default.mspx</evnet:previewtext><dc:creator>William Stacey</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478362/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;I'd love to! but those are installations that have being working for quite some time now and being critical to the operation (handles lots of $$$) I prefer not to touch them.&lt;/p&gt;
&lt;p&gt;But you can bet, new installations are going that way.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478018</link><pubDate>Fri, 10 Jul 2009 19:34:31 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478018</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478018/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'd love to! but those are installations that have being working for quite some time now and being critical to the operation (handles lots of $$$) I prefer not to touch them.
But you can bet, new installations are going that way.</evnet:previewtext><dc:creator>raptor3676</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478018/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;Yep I know, and in fact I set it that way but.&amp;nbsp; If you log on the server normaly (as opposed to the console) it still lets you log to the console with the same account, with out replacing the another session, which is the behavior you get (and the one I want) when you don't log to the console session.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478016</link><pubDate>Fri, 10 Jul 2009 19:30:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478016</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478016/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Yep I know, and in fact I set it that way but.&amp;nbsp; If you log on the server normaly (as opposed to the console) it still lets you log to the console with the same account, with out replacing the another session, which is the behavior you get (and the one I want) when you don't log to the console session.</evnet:previewtext><dc:creator>raptor3676</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478016/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;The app I mention is actually a middleware that handles messaging between to separate systems.&amp;nbsp; That's why I mentioned that they should run as services no apps in an session.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478013</link><pubDate>Fri, 10 Jul 2009 19:25:59 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=478013</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478013/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>The app I mention is actually a middleware that handles messaging between to separate systems.&amp;nbsp; That's why I mentioned that they should run as services no apps in an session.</evnet:previewtext><dc:creator>raptor3676</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/478013/Trackback.aspx</trackback:ping></item><item><title>Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;"PS: I want to restrict the use of the console for that account because otherwise I cannot ensure that it has a single session per user."&lt;/p&gt;
&lt;p&gt;There is a Group Policy setting which forces a single session per user. That's also the default behaviour of Windows Server 2008.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=477323</link><pubDate>Tue, 07 Jul 2009 19:02:57 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=477323</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/477323/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>"PS: I want to restrict the use of the console for that account because otherwise I cannot ensure that it has a single session per user."
There is a Group Policy setting which forces a single session per user. That's also the default behaviour of Windows Server 2008.</evnet:previewtext><dc:creator>AndyC</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/477323/Trackback.aspx</trackback:ping></item><item><title>Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;you may want to look into using Terminal Server - do the apps have to run 24x7 or just on demand?&lt;/p&gt;
&lt;p&gt;Terminal Server is part of windows server and can run an appand connect the user to the app so that they have no access to anything you do not want them to have, by use of policy you can remove the start menu, run command and other things.&lt;/p&gt;
&lt;p&gt;also the terminal service login can make the app the only thing they can use.&lt;/p&gt;
&lt;p&gt;so even if the app has to have some admin privleges you can make the user only have the app and not the whole server.&lt;/p&gt;
&lt;p&gt;you may also be able to create a session-connection so that the app is running and they just go back to it if it has to be running when no users are on.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=477311</link><pubDate>Tue, 07 Jul 2009 18:31:11 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=477311</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/477311/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>you may want to look into using Terminal Server - do the apps have to run 24x7 or just on demand?
Terminal Server is part of windows server and can run an appand connect the user to the app so that they have no access to anything you do not want them to have, by use of policy you can remove the&amp;#8230;</evnet:previewtext><dc:creator>figuerres</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/477311/Trackback.aspx</trackback:ping></item><item><title>Re: Single Session per User - Remote Desktop</title><description>&lt;p&gt;During my time at Siemens I did alot of software repackaging. I saw alot of bad application requiring admin rights but due to the company police it wasn't allowed to run desktops as admin. So what we always did was to set just the user rights to the resources needed by the application. So Regmon/Filemon and few hours of try and error is what you need to get the app running with user rights. With this strategy we got almost every app running&amp;nbsp;in a NT4 environment.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=477286</link><pubDate>Tue, 07 Jul 2009 17:22:33 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/477262-Single-Session-per-User-Remote-Desktop/?CommentID=477286</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/477286/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>During my time at Siemens I did alot of software repackaging. I saw alot of bad application requiring admin rights but due to the company police it wasn't allowed to run desktops as admin. So what we always did was to set just the user rights to the resources needed by the application. So&amp;#8230;</evnet:previewtext><dc:creator>section31</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/477286/Trackback.aspx</trackback:ping></item></channel></rss>