User FarrEver - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T12:43:45Z http://stackoverflow.com/feeds/user/21096 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2200604/in-wpf-view-a-portion-of-an-image 0 In WPF, view a portion of an image FarrEver http://stackoverflow.com/users/21096 2010-02-04T15:00:02Z 2010-02-04T15:00:02Z <p>We have an image where we create view box coordinates that are topleft/bottom right points within the image that are setup to allow for viewing portions of an image at different times in our application. In WPF, how do we load an image, and with topleft/bottom right points within that image, only show the portion of the image within that view box?</p> http://stackoverflow.com/questions/848702/need-to-format-dates-in-dynamically-built-wpf-datagrid 0 Need to format dates in dynamically built WPF DataGrid. FarrEver http://stackoverflow.com/users/21096 2009-05-11T15:38:50Z 2009-12-03T08:21:32Z <p>We are binding an unknown result set to a WPF DataGrid at run time. Some of our columns are going to contain DateTime values and we need to properly format these date time fields. Without knowing which columns are going to be DateTime fields at design time, how are we able to format the columns at runtime?</p> <p>We are using a DataTable's DefaultView to bind to the WPF DataGrid.</p> http://stackoverflow.com/questions/1306508/how-do-we-use-net-codedom-to-create-a-dependency-object 0 How do we use .Net CodeDom to create a Dependency Object? FarrEver http://stackoverflow.com/users/21096 2009-08-20T14:17:06Z 2009-08-20T14:27:43Z <p>We are creating our own code generated to automate CRUD coding and we need to generate a class for use withing WPF. To do this, we need to create the class with fields/properties as dependency objects. How do we accomplish this with CodeDom in .Net 3.5?</p> http://stackoverflow.com/questions/1060631/do-we-need-to-install-intermediate-code-signing-cert-for-full-trust-xbap-clickonc 0 Do we need to install Intermediate Code Signing cert for full trust XBAP/ClickOnce app? FarrEver http://stackoverflow.com/users/21096 2009-06-29T21:20:34Z 2009-07-16T19:08:41Z <p>We are creating a Full-Trust XBAP application and it needs to be installed/executed remotely outside of the customer's domain. In order to accomplish this we have purchased a Thawte code-signing certificate. We have used the spc and pvk from Thawte to create the pfx file for code-signing in VS 2008 on our XBAP. </p> <p>We import the pvx/cert onto each of our user's machines into their Trusted Publishers and Trusted Root Certification Authorities stores as needed to execute a Full-Trust XBAP. However, each user is unable to download/execute the XBAP due to "not granting privileges to the XBAP application." which is indicative of a certificate not being installed.</p> <p>We are able to resolve this by importing the Thawte Code Signing CA certificate from Thawte's web site onto each user's machine. We need to know if this is the proper method for doing this or if we are missing something with using Thawte code-signing certs for XBAP/ClickOnce applications. Do we have to have this Thawte intermediate cert installed on each machine? Or is there a workaround to get our base pvx/cert to work alone?</p> http://stackoverflow.com/questions/205751/how-to-add-xaml-storyboard-animation-to-a-full-blown-wpf-custom-control-in-an-xba 1 How to add XAML storyboard animation to a full blown WPF Custom Control in an XBAP? FarrEver http://stackoverflow.com/users/21096 2008-10-15T17:57:41Z 2009-07-16T19:03:39Z <p>We are creating custom WPF controls (not user controls) for an XBAP application and we would like to add a storyboard animation to scale the control to be 110% of its original size when the mouse hovers over it. We've used Blend to create the storyboard and it compiles just fine...however, when we run, it does not animate up to 110%. I've read bits and pieces here and there that you can't do storyboard animations in XAML for custom controls. Does anyone know how to do this for custom controls fully in XAML?</p> <p>Here is the XAML for our custom control:</p> <pre><code> &lt;Style TargetType="{x:Type controls:ExitButton}"&gt; &lt;Style.Resources&gt; &lt;Storyboard x:Key="OnMouseEnter"&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="{x:Null}" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00.2000000" Value="1.1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="{x:Null}" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00.2000000" Value="1.1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/Style.Resources&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="IsMouseOver" Value="True"&gt; &lt;Trigger.EnterActions&gt; &lt;BeginStoryboard Storyboard="{StaticResource OnMouseEnter}" x:Name="OnMouseEnter_BeginStoryboard"/&gt; &lt;/Trigger.EnterActions&gt; &lt;Setter Property="BitmapEffect"&gt; &lt;Setter.Value&gt; &lt;OuterGlowBitmapEffect GlowColor="Blue" GlowSize="4"/&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Trigger&gt; &lt;Trigger Property="IsPressed" Value="True"&gt; &lt;Setter Property="BitmapEffect"&gt; &lt;Setter.Value&gt; &lt;OuterGlowBitmapEffect GlowColor="Blue" GlowSize="8"/&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;Setter Property="ToolTip" Value="Exit this Application" /&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type controls:ExitButton}"&gt; &lt;Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"&gt; &lt;Viewbox x:Name="ControlViewBox"&gt; &lt;Grid x:Name="ExitApplication" Width="35" Height="50"&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="5" /&gt; &lt;RowDefinition Height="25" /&gt; &lt;RowDefinition Height="15" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Viewbox Grid.Row="1" Width="25" x:Name="ImageViewBox"&gt; &lt;Canvas Width="23" Height="23" HorizontalAlignment="Center"&gt; &lt;Path Width="22.9708" Height="22.9703" Canvas.Left="4.06802e-005" Canvas.Top="0" Stretch="Fill" Data="F1 M 16.1087,1.25732C 16.1087,1.25732 12.4594,4.90935 11.4834,5.88135L 11.4834,5.88135C 10.5141,4.91203 6.86068,1.25871 6.86068,1.25871L 6.86068,1.25871C 5.18604,-0.416016 2.93538,-0.42131 1.25407,1.26131L 1.25407,1.26131C -0.417969,2.93335 -0.417969,5.18799 1.25407,6.86272L 1.25407,6.86272C 1.25407,6.86272 4.90739,10.5146 5.87939,11.4866L 5.87939,11.4866C 4.91138,12.4561 1.25806,16.1067 1.25806,16.1067L 1.25806,16.1067C -0.415283,17.7827 -0.415283,20.0374 1.26204,21.7134L 1.26204,21.7134C 2.9327,23.388 5.18604,23.3853 6.86068,21.7107L 6.86068,21.7107C 6.86068,21.7107 10.5114,18.0614 11.4834,17.0894L 11.4834,17.0894C 12.4527,18.0614 16.1087,21.7174 16.1087,21.7174L 16.1087,21.7174C 17.7861,23.3893 20.0367,23.388 21.7113,21.7134L 21.7113,21.7134C 23.3901,20.0347 23.3887,17.7853 21.7167,16.112L 21.7167,16.112C 21.7167,16.112 18.0607,12.4561 17.0887,11.4841L 17.0887,11.4841C 18.0607,10.5107 21.714,6.86003 21.714,6.86003L 21.714,6.86003C 23.3887,5.18269 23.3901,2.93335 21.7167,1.25732L 21.7167,1.25732C 20.878,0.418701 19.8953,0 18.9141,0L 18.9141,0C 17.9314,0 16.9487,0.418701 16.1087,1.25732 Z "&gt; &lt;Path.Fill&gt; &lt;LinearGradientBrush StartPoint="0.945183,0.945154" EndPoint="0.0547729,0.0547262"&gt; &lt;LinearGradientBrush.GradientStops&gt; &lt;GradientStop Color="#FFB12702" Offset="0"/&gt; &lt;GradientStop Color="#FFD02F00" Offset="0.093399"/&gt; &lt;GradientStop Color="#FFE87A5F" Offset="1"/&gt; &lt;/LinearGradientBrush.GradientStops&gt; &lt;/LinearGradientBrush&gt; &lt;/Path.Fill&gt; &lt;/Path&gt; &lt;Path Width="9.9987" Height="6.8707" Canvas.Left="11.246" Canvas.Top="0.665356" Stretch="Fill" Data="F1 M 18.9114,0.665359C 18.0847,0.663986 17.2727,1.03606 16.5807,1.72803L 11.9567,6.35466L 11.246,7.06404L 11.7194,7.53606L 12.4287,6.82666L 17.0567,2.20134C 18.262,1.03606 19.5647,1.03467 20.7727,2.20271L 21.2447,1.72932C 20.5553,1.03865 19.7434,0.665359 18.9194,0.665359L 18.9114,0.665359 Z "&gt; &lt;Path.Fill&gt; &lt;LinearGradientBrush StartPoint="0.616568,0.713077" EndPoint="1.02849,0.713077"&gt; &lt;LinearGradientBrush.RelativeTransform&gt; &lt;TransformGroup&gt; &lt;SkewTransform CenterX="0.616568" CenterY="0.713077" AngleX="21.0093" AngleY="0"/&gt; &lt;RotateTransform CenterX="0.616568" CenterY="0.713077" Angle="235.505"/&gt; &lt;/TransformGroup&gt; &lt;/LinearGradientBrush.RelativeTransform&gt; &lt;LinearGradientBrush.GradientStops&gt; &lt;GradientStop Color="#FFC12900" Offset="0"/&gt; &lt;GradientStop Color="#FFFFE4DE" Offset="1"/&gt; &lt;/LinearGradientBrush.GradientStops&gt; &lt;/LinearGradientBrush&gt; &lt;/Path.Fill&gt; &lt;/Path&gt; &lt;Path Width="5.72795" Height="5.72534" Canvas.Left="0.660726" Canvas.Top="0.665359" Stretch="Fill" Data="F1 M 1.72607,1.73332C 1.03402,2.42268 0.662028,3.23601 0.660726,4.05998L 0.660726,4.05998C 0.662028,4.88802 1.0367,5.69865 1.73136,6.3907L 2.20207,5.91731C 1.0367,4.7093 1.0367,3.40935 2.19938,2.20671L 2.19938,2.20671C 3.40739,1.03735 4.70874,1.03606 5.91675,2.20532L 6.38867,1.73071C 5.69401,1.03735 4.88338,0.665359 4.05672,0.665359L 4.05672,0.665359C 3.22868,0.665359 2.41805,1.03735 1.72607,1.73332 Z "&gt; &lt;Path.Fill&gt; &lt;LinearGradientBrush StartPoint="0.593564,0.59328" EndPoint="1.16939,0.59328"&gt; &lt;LinearGradientBrush.RelativeTransform&gt; &lt;TransformGroup&gt; &lt;SkewTransform CenterX="0.593564" CenterY="0.59328" AngleX="0.0259795" AngleY="0"/&gt; &lt;RotateTransform CenterX="0.593564" CenterY="0.59328" Angle="225.013"/&gt; &lt;/TransformGroup&gt; &lt;/LinearGradientBrush.RelativeTransform&gt; &lt;LinearGradientBrush.GradientStops&gt; &lt;GradientStop Color="#FFC12900" Offset="0"/&gt; &lt;GradientStop Color="#FFFFE4DE" Offset="1"/&gt; &lt;/LinearGradientBrush.GradientStops&gt; &lt;/LinearGradientBrush&gt; &lt;/Path.Fill&gt; &lt;/Path&gt; &lt;Path Width="6.86931" Height="9.99202" Canvas.Left="0.66471" Canvas.Top="11.2507" Stretch="Fill" Data="F1 M 6.3527,11.9561L 1.73136,16.5827C 1.0367,17.2734 0.663411,18.0867 0.664714,18.9106L 0.664714,18.9106C 0.663411,19.7374 1.03939,20.5507 1.73275,21.2427L 2.20605,20.7707L 2.20467,20.7707C 1.0367,19.5614 1.0367,18.2613 2.20207,17.0547L 6.82739,12.4321L 7.53402,11.7227L 7.06201,11.2507L 6.3527,11.9561 Z "&gt; &lt;Path.Fill&gt; &lt;LinearGradientBrush StartPoint="0.713103,0.616728" EndPoint="1.12533,0.616728"&gt; &lt;LinearGradientBrush.RelativeTransform&gt; &lt;TransformGroup&gt; &lt;SkewTransform CenterX="0.713103" CenterY="0.616728" AngleX="-20.9846" AngleY="0"/&gt; &lt;RotateTransform CenterX="0.713103" CenterY="0.616728" Angle="214.508"/&gt; &lt;/TransformGroup&gt; &lt;/LinearGradientBrush.RelativeTransform&gt; &lt;LinearGradientBrush.GradientStops&gt; &lt;GradientStop Color="#FFC12900" Offset="0"/&gt; &lt;GradientStop Color="#FFFFE4DE" Offset="1"/&gt; &lt;/LinearGradientBrush.GradientStops&gt; &lt;/LinearGradientBrush&gt; &lt;/Path.Fill&gt; &lt;/Path&gt; &lt;/Canvas&gt; &lt;/Viewbox&gt; &lt;TextBlock Grid.Row="2" Text="exit" HorizontalAlignment="Center" FontFamily="Calibri" Foreground="#FFFFFFFF" RenderTransformOrigin="0.5,0.5" VerticalAlignment="Center" FontSize="18"&gt; &lt;TextBlock.RenderTransform&gt; &lt;TransformGroup&gt; &lt;ScaleTransform ScaleX="1" ScaleY="1"/&gt; &lt;SkewTransform AngleX="0" AngleY="0"/&gt; &lt;RotateTransform Angle="0"/&gt; &lt;TranslateTransform X="0" Y="0"/&gt; &lt;/TransformGroup&gt; &lt;/TextBlock.RenderTransform&gt;&lt;/TextBlock&gt; &lt;/Grid&gt; &lt;/Viewbox&gt; &lt;/Border&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Setter Property="RenderTransformOrigin" Value="0.5,0.5"/&gt; &lt;Setter Property="RenderTransform"&gt; &lt;Setter.Value&gt; &lt;TransformGroup&gt; &lt;ScaleTransform ScaleX="1" ScaleY="1"/&gt; &lt;SkewTransform AngleX="0" AngleY="0"/&gt; &lt;RotateTransform Angle="0"/&gt; &lt;TranslateTransform X="0" Y="0"/&gt; &lt;/TransformGroup&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/1086874/how-to-make-wpf-webbrowser-grow-horizontally-and-vertically 0 How to make WPF WebBrowser grow horizontally and vertically? FarrEver http://stackoverflow.com/users/21096 2009-07-06T13:11:15Z 2009-07-06T13:37:18Z <p>In WPF, we are using a WebBrowser control to view HTML content. When we place the control on our window, it grows horizontally with the window as it grows/shrinks. However, we have not found a way to make the control grow vertically with the window. We are looking for some sample code that will allow the WebBrowser WPF control to grow both vertically and horizontally with the window.</p> http://stackoverflow.com/questions/209661/how-to-update-an-xbaps-config-file-after-deployment 2 How to update an XBAP's config file after deployment? FarrEver http://stackoverflow.com/users/21096 2008-10-16T18:12:49Z 2009-05-27T18:09:48Z <p>We have a WPF XBAP application that we want to change the configuration on the server after it is deployed. Since the config file is embedded in the deployment files, how is this possible?</p> <p>For example, we want to change the database connection strings the deployed app is connected to or we want to update the WCF service binding settings that it is connecting to? We want to update the config file on the server and not have to recompile and redeploy each time.</p> <p>Thanks!</p> http://stackoverflow.com/questions/848702/need-to-format-dates-in-dynamically-built-wpf-datagrid/850035#850035 0 Answer by FarrEver for Need to format dates in dynamically built WPF DataGrid. FarrEver http://stackoverflow.com/users/21096 2009-05-11T20:51:32Z 2009-05-11T20:51:32Z <p>I figured out how to do this in code...hopefully there is a way to mimic this in XAML. (Please post if you find a working XAML sample.)</p> <p>To accomplish this in code, add an event handler for the Grid's AutoGeneratingColumn event, such as:</p> <pre><code> private void ResultsDataGrid_AutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e) { if (e.PropertyType == typeof(DateTime)) { DataGridTextColumn dataGridTextColumn = e.Column as DataGridTextColumn; if (dataGridTextColumn != null) { dataGridTextColumn.Binding.StringFormat = "{0:d}"; } } } </code></pre> http://stackoverflow.com/questions/813389/how-to-capture-ctrltab-ctrlshifttab-in-wpf 3 How to capture CTRL+TAB, CTRL+SHIFT+TAB in WPF? FarrEver http://stackoverflow.com/users/21096 2009-05-01T21:28:59Z 2009-05-04T16:35:52Z <p>Does anyone have some sample code that will trap the CTRL+TAB and CTRL+SHIFT+TAB for a WPF application. We have created KeyDown events and also tried adding command bindings with input gestures but we are never able to trap these 2 shortcuts.</p> http://stackoverflow.com/questions/803475/how-to-prevent-browser-from-closing-while-running-an-xbap 0 How to prevent browser from closing while running an XBAP? FarrEver http://stackoverflow.com/users/21096 2009-04-29T17:42:16Z 2009-04-29T20:25:31Z <p>We need to prevent the browser from closing (hitting X) in our XBAP application if the user has edited any data. We are checking for this in the Closing event of our Page/Window, doing e.Cancel, and that does fire correctly, however it does not prevent the browser from closing. This does work when closing a tab, but not when closing the whole browser.</p> http://stackoverflow.com/questions/768512/how-do-i-create-an-msi-in-vs-2008-to-install-a-certificate-into-trusted-publisher 2 How do I create an MSI in VS 2008 to install a certificate into Trusted Publisher store on client machine? FarrEver http://stackoverflow.com/users/21096 2009-04-20T14:30:19Z 2009-04-22T17:36:38Z <p>What are the steps needed to create a VS 2008 MSI setup and deployment file to install a custom created certificate/key onto a client's machine?</p> http://stackoverflow.com/questions/689941/how-to-enabled-printer-sharing-on-web-server-2008 0 How to enabled Printer Sharing on Web Server 2008? FarrEver http://stackoverflow.com/users/21096 2009-03-27T14:18:54Z 2009-03-27T17:05:58Z <p>I am installing Web Server 2008 for my home network. I have 2 USB printers that I am connecting to this machine and want to share these printers so that my other machines can print to these 2 USB printers. (I previously had Win Server 2003 on this machine and was able to share both printers fine.) File and Printer sharing Inbound Role for my Private network is enabled, when I go into Network and Sharing Center and try to turn ON Printer Sharing, it never sticks. It always stays on OFF. I go to my installed printers and try to Share them and get the following error message:</p> <p>Printer Settings could not be saved. Remote connections to the Print Spooler are blocked by a policy set on your machine.</p> <p>I have not been able to find a policy on my machine that is preventing this. I have searched a lot over the past few days and most of the results say what I have done should work and there are also a number of search results that say Printer Sharing on Web Server 2008 is not allowed and you have to hack it.</p> <p>Has anyone installed Web Server 2008 and shared printers before? If so, what are the detailed steps you took to get this to work?</p> http://stackoverflow.com/questions/120851/how-do-i-create-a-wpf-rounded-corner-container 3 How do I create a WPF Rounded Corner container? FarrEver http://stackoverflow.com/users/21096 2008-09-23T13:04:12Z 2008-10-17T10:33:53Z <p>We are creating an XBAP application that we need to have rounded corners in various locations in a single page and we would like to have a WPF Rounded Corner container to place a bunch of other elements within. Does anyone have some suggestions or sample code on how we can best accomplish this? Either with styles on a or with creating a custom control?</p> http://stackoverflow.com/questions/135518/using-wpf-what-is-the-best-method-to-update-the-background-for-a-custom-button-c 1 Using WPF, what is the best method to update the background for a custom button control? FarrEver http://stackoverflow.com/users/21096 2008-09-25T19:39:51Z 2008-09-25T20:37:08Z <p>In WPF, we are creating custom controls that inherit from button with completely drawn-from-scratch xaml graphics. We have a border around the entire button xaml and we'd like to use that as the location for updating the background when MouseOver=True in a trigger. What we need to know is how do we update the background of the border in this button with a gradient when the mouse hovers over it?</p> http://stackoverflow.com/questions/209661/how-to-update-an-xbaps-config-file-after-deployment/917203#917203 Comment by FarrEver on How to update an XBAP's config file after deployment? FarrEver http://stackoverflow.com/users/21096 2009-07-07T20:52:14Z 2009-07-07T20:52:14Z Adam, if I were to place a file named CustomAppSettings.xml in the deployment server's source location...what method do I use to get that file into my XBAP? I'm formatting it in the same manner as an app.config file hoping I can import it into a configuraiton object and access appSettings directly. Otherwise, if I can get it into an xml object I can get the name/value pairs. I'm missing the code to get teh file into my XBAP. http://stackoverflow.com/questions/848702/need-to-format-dates-in-dynamically-built-wpf-datagrid/849037#849037 Comment by FarrEver on Need to format dates in dynamically built WPF DataGrid. FarrEver http://stackoverflow.com/users/21096 2009-05-11T19:52:31Z 2009-05-11T19:52:31Z Is there a way to possibly do this in code after setting the ItemSource on the grid? http://stackoverflow.com/questions/848702/need-to-format-dates-in-dynamically-built-wpf-datagrid/849037#849037 Comment by FarrEver on Need to format dates in dynamically built WPF DataGrid. FarrEver http://stackoverflow.com/users/21096 2009-05-11T19:49:21Z 2009-05-11T19:49:21Z Bryan - I have the code in there but the grid is still coming up with the original formatting. I even created a value converter to format any DateTime values to a specified format. I placed a breakpoint in the formatter and it never hit the code. Seems like the DateTime type is not being used as a template in the Grid. Any ideas on this? Maybe we need a DataGridColumn converter or something. http://stackoverflow.com/questions/848702/need-to-format-dates-in-dynamically-built-wpf-datagrid/849037#849037 Comment by FarrEver on Need to format dates in dynamically built WPF DataGrid. FarrEver http://stackoverflow.com/users/21096 2009-05-11T17:39:32Z 2009-05-11T17:39:32Z Is it possible to apply this template to just the DateTime values in the Grid and not the window/application? http://stackoverflow.com/questions/813389/how-to-capture-ctrltab-ctrlshifttab-in-wpf/813421#813421 Comment by FarrEver on How to capture CTRL+TAB, CTRL+SHIFT+TAB in WPF? FarrEver http://stackoverflow.com/users/21096 2009-05-04T14:49:48Z 2009-05-04T14:49:48Z Siz, thanks...that does work for our WPF. We also have an XBAP that we need to trap this for and it doesn't appear to work on the XBAP. Any ideas on how to do this with an XBAP as well? http://stackoverflow.com/questions/768512/how-do-i-create-an-msi-in-vs-2008-to-install-a-certificate-into-trusted-publisher/769542#769542 Comment by FarrEver on How do I create an MSI in VS 2008 to install a certificate into Trusted Publisher store on client machine? FarrEver http://stackoverflow.com/users/21096 2009-04-22T15:41:08Z 2009-04-22T15:41:08Z WiX is a great solution for this. Thank you! http://stackoverflow.com/questions/689941/how-to-enabled-printer-sharing-on-web-server-2008/689952#689952 Comment by FarrEver on How to enabled Printer Sharing on Web Server 2008? FarrEver http://stackoverflow.com/users/21096 2009-03-27T15:43:11Z 2009-03-27T15:43:11Z That didn't resolve it. Each time I attempt to Share one of my printers I get the error message above on my Web Server 2008 machine,whether I have the Firewall enabled, disabled, configured, etc. I've search and searched for this &quot;Policy&quot; that it says is preventing this, but am unable to locate it.