<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.evisionservices.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.evisionservices.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Amisra</id>
		<title>eVision - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.evisionservices.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Amisra"/>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Special:Contributions/Amisra"/>
		<updated>2026-04-20T19:51:34Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.1</generator>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Order_Express_-_Advanced_Troubleshooting</id>
		<title>Order Express - Advanced Troubleshooting</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Order_Express_-_Advanced_Troubleshooting"/>
				<updated>2018-10-02T19:59:00Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: Admin blocked app issue&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Force the table-of-contents to appear even if there are fewer than 4 categories on this page. --&amp;gt;&lt;br /&gt;
__FORCETOC__ &lt;br /&gt;
&lt;br /&gt;
== Duplicate DbProviderFactories == &lt;br /&gt;
&lt;br /&gt;
Due to an issue in certain software, you may receive the following error:&lt;br /&gt;
&amp;lt;code&amp;gt;The 'DbProviderFactories' section can only appear once per config file.&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This occurs because the Machine.config file on the computer contains erroneous information and must be fixed by hand.  Machine.config contains settings that apply to an entire computer.  Editing this file is usually discouraged for users who do not fully understand the implications of doing so.&lt;br /&gt;
&lt;br /&gt;
==== Machine.config file location ====&lt;br /&gt;
Locating this file can be difficult, as multiple versions of it exist for the various versions of the .NET Framework installed on the local machine.&lt;br /&gt;
&lt;br /&gt;
The root directory where a user should begin their search is &amp;lt;code&amp;gt;C:\Windows\Microsoft.NET\&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Within this directory there's a directory named &amp;lt;code&amp;gt;Framework&amp;lt;/code&amp;gt; and another one named &amp;lt;code&amp;gt;Framework64&amp;lt;/code&amp;gt;.  These directories contain the 32-bit and 64-bit versions of the .NET framework (respectively).  Beneath these folders, the structure should be identical, so if you make a change under one of these and it doesn't fix it, try making the same change under the other first.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;C:\Windows\Microsoft.NET\Framework&lt;br /&gt;
&lt;br /&gt;
C:\Windows\Microsoft.NET\Framework64&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These two directories contain a number of folders (disregard any files in this directory, as they aren't relevant for the purposes of this article).  Each folder refers to a specific version of the .NET framework.  The number of folders can vary based on the operating system as well as the installed applications.  Most applications from eVision Services are currently using the .NET 4.0 framework, which should be contained in a folder named &amp;lt;code&amp;gt;v4.0.30319&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Inside the folder for a particular version, there should be a directory named &amp;lt;code&amp;gt;Config&amp;lt;/code&amp;gt;.  In this folder there's a file named &amp;lt;code&amp;gt;machine.config&amp;lt;/code&amp;gt;, which is the file that can be edited. (It is important to note that there are multiple files with very similar names, so double-check the name of the file before making any modifications to it)&lt;br /&gt;
&lt;br /&gt;
Here are some examples of the full paths to the relevant files:&lt;br /&gt;
&lt;br /&gt;
32-bit: &amp;lt;code&amp;gt;C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
64-bit: &amp;lt;code&amp;gt;C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Instructions ====&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Locate the machine.config file and make a backup of the file.  Put the backup in a safe location in case something goes wrong with it. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the original file in a text editor and search for &amp;lt;code&amp;gt;&amp;lt;DbProviderFactories&amp;gt;&amp;lt;/code&amp;gt;.  This text should appear more than once.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Compare your file to the block of text below. If the file contains text that matches this, delete the text.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;system.data&amp;gt;&lt;br /&gt;
  &amp;lt;DbProviderFactories&amp;gt;&lt;br /&gt;
    &amp;lt;add name=&amp;quot;IBM DB2 for i5/OS .NET Provider&amp;quot; invariant=&amp;quot;IBM.Data.DB2.iSeries&amp;quot; description=&amp;quot;.NET Framework Data Provider for i5/OS&amp;quot; type=&amp;quot;IBM.Data.DB2.iSeries.iDB2Factory, IBM.Data.DB2.iSeries, Version=12.0.0.0, Culture=neutral, PublicKeyToken=9cdb2ebfb1f93a26&amp;quot; /&amp;gt;&lt;br /&gt;
  &amp;lt;/DbProviderFactories&amp;gt;&lt;br /&gt;
&amp;lt;/system.data&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Ensure that the file is saved before exiting the text editor.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;The issue should now be resolved.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Event Log Errors == &lt;br /&gt;
[[File:Order-Express-Has-Stopped-Working.png|thumbnail|Error Dialog]]&lt;br /&gt;
Order Express may occasionally crash without allowing the user to describe and submit the error to the support team.  &lt;br /&gt;
&lt;br /&gt;
When this occurs, the user will need to retrieve the log files and submit them manually.&lt;br /&gt;
=== Instructions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt; Press the &amp;quot;Windows&amp;quot; key, or click the &amp;quot;Start&amp;quot; button in the bottom-left corner of the screen.&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Windows-key.png|border|left]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Once on the Start screen, type the text &amp;lt;code&amp;gt;Event Logs&amp;lt;/code&amp;gt;.  A search box should display as you begin typing.&amp;lt;br /&amp;gt;&lt;br /&gt;
Wait for the search results to appear.&amp;lt;br /&amp;gt;&lt;br /&gt;
Click the top entry, which should read &amp;lt;code&amp;gt;View event logs&amp;lt;/code&amp;gt;.&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Search-event-logs-windows8.png|border|left]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
In the window that appears, click the arrow to the left of &amp;lt;code&amp;gt;Windows Logs&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Event-logs-default.png|border|left]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Select the &amp;lt;code&amp;gt;Application&amp;lt;/code&amp;gt; entry.&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Event-logs-windows.png|border|left]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
In the list shown in the middle of the window, locate the most recent entry that meets the following criteria:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;It uses the &amp;lt;code&amp;gt;Error&amp;lt;/code&amp;gt; Icon: [[File:Event-logs-error-icon.png]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;The &amp;lt;code&amp;gt;Source&amp;lt;/code&amp;gt; column should contain &amp;lt;code&amp;gt;.NET Runtime&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Right-click on that entry, select &amp;lt;code&amp;gt;Copy&amp;lt;/code&amp;gt;, and then select &amp;lt;code&amp;gt;Copy Details as Text&amp;lt;/code&amp;gt;.&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Event-logs-dot-net-runtime-copy.png|border|left]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
At this point, the contents of the error log are on your clipboard, and can be pasted into any text editor.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open a text editor (such as Notepad), and use the &amp;lt;code&amp;gt;Paste&amp;lt;/code&amp;gt; command to insert the error details.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Save the text document, and attach it to an email to our support team.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Standalone Version ==&lt;br /&gt;
[[File:OrderExpressStandaloneDownload.png|thumbnail|Standalone Version Download]]&lt;br /&gt;
[[File:OrderExpressStandaloneExexecutable.png|thumbnail|Locating the Executable]]&lt;br /&gt;
In order to debug certain issues, eVision Support may provide you with a link to download a ''Standalone Version'' of Order Express.  This version of Order Express does not require installation and is primarily used to identify whether an issue is caused by a broken installation, or with Order Express directly.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the link that was provided to you by eVision Support&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click the ''Download'' button on the page and save the file to your desktop&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Extract the downloaded file to a folder. (Note: Ensure the file is not marked as &amp;quot;Blocked&amp;quot; before you perform the extraction.)&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the folder and locate the executable file for the application&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If the program loads up successfully, the issue is the result of the installation routine.  Perform the ''Extended (Full) Uninstall'' on the [[Uninstalling_Order_Express|Uninstalling Order Express]] page.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If the program does '''not''' load successfully, the cause of the issue is within the application.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Ensure that you communicate the results of this test back to eVision Support for additional troubleshooting steps.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Standalone Version Will Not Connect ===&lt;br /&gt;
[[File:OrderExpress_Standalone_Unblock1.png|thumbnail|Opening the &amp;quot;Properties&amp;quot; window]]&lt;br /&gt;
[[File:OrderExpress_Standalone_Unblock2.png|thumbnail|Unblocking the file]]&lt;br /&gt;
There exists a security feature within Windows that can sometimes prevent Standalone Versions of Order Express from working correctly.  Files that are downloaded from an non-trusted web location are marked as &amp;quot;Blocked&amp;quot; by default, preventing them from retrieving content from the internet.  The solution for this issue is to &amp;quot;unblock&amp;quot; the downloaded file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Right-click on the file that was downloaded from the internet.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Select &amp;lt;code&amp;gt;Properties&amp;lt;/code&amp;gt; from the context menu.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Find the &amp;lt;code&amp;gt;Unblock&amp;lt;/code&amp;gt; button at the bottom of the dialog, and click it.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;The file can now be opened.  If the file is a zip file, it can now be extracted.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' If the blocked file is a zip file, it ''must'' be unblocked prior to extracting it, or you will likely encounter issues with the unzipped files.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
== Your administrator has blocked this application ==&lt;br /&gt;
&lt;br /&gt;
If you are unable to install/update clickonce application due to security settings. The message should say: Your security settings do not allow this application to be installed on your computer.&lt;br /&gt;
This usually implies the Trust Manager Prompt Behavior is very tightly secured that is preventing any application not installed on the PC from executing. &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Admin blocked oe error.png]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When this occurs, the user will need to open windows Registry Editor the fix the settings manually. &lt;br /&gt;
&lt;br /&gt;
=== Please follow the steps below to enable the ClickOnce trust prompt by using the registry editor Open the registry editor: ===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click Start, and then click Run&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In the Open box, type &amp;lt;code&amp;gt;regedit&amp;lt;/code&amp;gt;, and then click OK&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Find the following registry key: &amp;lt;code&amp;gt;\HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If the key does not exist, create it.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Add the following subkeys as String Value, if they do not already exist, with the associated values shown in the following table.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
[[File:Reg_settings_trustmanager.PNG]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' You can alternatively just delete the key &amp;quot;TrustManager&amp;quot; itself and everything should be working well.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=File:Reg_settings_trustmanager.PNG</id>
		<title>File:Reg settings trustmanager.PNG</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=File:Reg_settings_trustmanager.PNG"/>
				<updated>2018-10-02T19:25:00Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: Registry Settings for the Trust manager prompt behaviour.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Registry Settings for the Trust manager prompt behaviour.&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=File:Admin_blocked_oe_error.png</id>
		<title>File:Admin blocked oe error.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=File:Admin_blocked_oe_error.png"/>
				<updated>2018-10-02T19:23:52Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: Your administrator has blocked this application. Your security settings do not allow this application to be installed on your computer.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Your administrator has blocked this application. Your security settings do not allow this application to be installed on your computer.&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions</id>
		<title>Order Express - Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions"/>
				<updated>2018-08-20T20:01:12Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: updated minimum screen resolution&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains answers to a variety of common questions and issues regarding Order Express.  Please review the table of contents below to see if your question has been answered.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__ &amp;lt;!-- Force the table-of-contents to appear even if there are fewer than 4 categories on this page. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What are the system requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Minimum ====&lt;br /&gt;
These requirements are the minimum requirements for the program to run.  Only having the minimum system requirements may cause the program to run at a slower speed &amp;amp; display as unintended.&lt;br /&gt;
* 1.3GHz or faster processor&lt;br /&gt;
* Microsoft Windows 7&lt;br /&gt;
* 2GB of RAM&lt;br /&gt;
* 320MB of available hard-disk space&lt;br /&gt;
* 1280x720 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox, or Microsoft Internet Explorer 8, 9, or 10&lt;br /&gt;
&lt;br /&gt;
==== Recommended ====&lt;br /&gt;
* 2.0GHz or faster dual-core processor&lt;br /&gt;
* Microsoft Windows 10&lt;br /&gt;
* 4GB of RAM &lt;br /&gt;
* 10GB of available hard-disk space&lt;br /&gt;
* 1920x1080 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox or Microsoft Edge browser&lt;br /&gt;
&lt;br /&gt;
== What are the network requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Overview ====&lt;br /&gt;
Order Express is deployed to end users as a ClickOnce application requiring a &amp;quot;Full Trust&amp;quot; security zone.  Because the Order Express binaries are not digitally signed, it is unfortunately not possible to set a deployment policy to allow Order Express to be installed independently of other ClickOnce applications.  Subsequently, it is suggested (although not ''currently'' required) that end-users of Order Express have administrative access of their local machine.&lt;br /&gt;
&lt;br /&gt;
Additional information regarding ClickOnce can be found at the following link: http://msdn.microsoft.com/en-us/library/t71a733d.aspx&lt;br /&gt;
&lt;br /&gt;
In addition to the requirements of the security policy of the local machine, Order Express also has a number of requirements in terms of network connectivity.  At its very core, Order Express is an internet application, relying on its ability to synchronize data to and from remote systems to keep both manufacturers and dealers informed throughout the ordering process.&lt;br /&gt;
&lt;br /&gt;
Order Express must be able to access the following ports on remote machines.  In the interest of helping network administrators maintain network security during the deployment of Order Express, the information in the list below is granular enough to reliably identify network traffic from Order Express so that it can be allowed.&lt;br /&gt;
&lt;br /&gt;
==== Hosts And Ports ====&lt;br /&gt;
* Feature: Status Notifications&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;smtp.gmail.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;25:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;465:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;587:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
* Feature: ClickOnce Install/Update, Setup &amp;amp; Admin (Accessed via Web-Browser), Database Synchronization&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;*.evisionservices.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;80:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
* Feature: Catalog Install/Update, Image Install/Update &lt;br /&gt;
** Host: &amp;lt;code&amp;gt;s3.amazonaws.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition to the above, Order Express must be able to establish/maintain an ongoing connection to a remote SQL Server.&lt;br /&gt;
While the initial handshake only requires port &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt; to be open, additional ports must be available to complete the handshake process.  &lt;br /&gt;
&lt;br /&gt;
Refer to the following link for more information: https://support.microsoft.com/kb/287932/en-us&lt;br /&gt;
&lt;br /&gt;
== How do I uninstall the program? ==&lt;br /&gt;
[[File:Win8 ControlPanelUninstall.png|thumb|125px|Uninstall Programs]]&lt;br /&gt;
[[File:Win8 ControlPanelUninstall2.png|thumb|125px|Uninstalling Order Express]]&lt;br /&gt;
&lt;br /&gt;
Like other applications [[Order Express]] can be uninstalled from a computer using the '''Add/Remove Programs''' entry in the control panel.  This is usually sufficient to solve any problems that arise as a result of a failed installation, but this method does leave a few minor files behind on the local system.  These files rarely cause issues, but removing these files is an effective way to guarantee that an installation of Order Express is brand new.&lt;br /&gt;
&lt;br /&gt;
===Standard Uninstall===&lt;br /&gt;
# Open the ''Control Panel''&lt;br /&gt;
# Under ''Programs'', click ''Uninstall a program''&lt;br /&gt;
# Select ''Order Express 2.3'' in the list, and click ''Uninstall/Change''&lt;br /&gt;
# Confirm the uninstall on the dialog that appears.&lt;br /&gt;
&lt;br /&gt;
=== Extended (Full) Uninstall ===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform the steps outlined above in ''Standard Uninstall''&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Navigate to the following directory on the target computer:&lt;br /&gt;
 &amp;lt;code&amp;gt;%appdata%\..\Local\Apps\2.0\&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the folder that is '''not''' named ''Data''.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the only folder in this directory. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In this directory, the amount of folders is dependent upon the number of ClickOnce applications installed on the local machine.  &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Ensure that the folders are sorted by name, and locate any folders that '''begin''' with the text &amp;lt;code&amp;gt;orde...exe&amp;lt;/code&amp;gt; '''or''' &amp;lt;code&amp;gt;orde..tion&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;After locating those folders, back them up (copy them to the desktop) and then delete them.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;At this point Order Express has been completely removed from your system.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What Kind of Files and/or Folder(s) do I need access to? ==&lt;br /&gt;
[[Order Express]] application is a '''FULL TRUST''' application and will require the user to have '''WRITE''' permissions access to the following folders:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''AppData''' folder - It can be accessed as '''%APPDATA%''' in windows explorer. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Documents''' folder - It can be accessed as '''%USERPROFILE%\Documents''' in windows explorer. In older versions of windows it is also referred as '''MyDocuments''' folder.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Global Assembly Cache''' (GAC) - Order Express requires quite a few DLLs to run. Some are proprietary DLLs and they reside in the AppData cache. There are also a host of shared DLLs that needs to be installed and/or updated in the user's GAC during installation. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
Though ClickOnce installs are per-user, permission elevation may be required if there are prerequisites that require administrator privileges.&lt;br /&gt;
&lt;br /&gt;
Refer to this link for more information on ClickOnce security: https://msdn.microsoft.com/en-us/library/76e4d2xw.aspx&lt;br /&gt;
&lt;br /&gt;
== My question isn't on the list, what do I do?  ==&lt;br /&gt;
If your question is not listed above, please have the Manufacturer contact us and we'll do our best to answer your questions.&lt;br /&gt;
&lt;br /&gt;
=== See Also ===&lt;br /&gt;
* [[Order Express - Advanced Troubleshooting|Advanced Troubleshooting]]&lt;br /&gt;
* [[Order Express]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions</id>
		<title>Order Express - Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions"/>
				<updated>2018-04-12T15:04:23Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: add link to clickonce security&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains answers to a variety of common questions and issues regarding Order Express.  Please review the table of contents below to see if your question has been answered.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__ &amp;lt;!-- Force the table-of-contents to appear even if there are fewer than 4 categories on this page. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What are the system requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Minimum ====&lt;br /&gt;
These requirements are the minimum requirements for the program to run.  Only having the minimum system requirements may cause the program to run at a slower speed &amp;amp; display as unintended.&lt;br /&gt;
* 1.3GHz or faster processor&lt;br /&gt;
* Microsoft Windows 7&lt;br /&gt;
* 2GB of RAM&lt;br /&gt;
* 320MB of available hard-disk space&lt;br /&gt;
* 1024x768 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox, or Microsoft Internet Explorer 8, 9, or 10&lt;br /&gt;
&lt;br /&gt;
==== Recommended ====&lt;br /&gt;
* 2.0GHz or faster dual-core processor&lt;br /&gt;
* Microsoft Windows 10&lt;br /&gt;
* 4GB of RAM &lt;br /&gt;
* 10GB of available hard-disk space&lt;br /&gt;
* 1920x1080 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox or Microsoft Edge browser&lt;br /&gt;
&lt;br /&gt;
== What are the network requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Overview ====&lt;br /&gt;
Order Express is deployed to end users as a ClickOnce application requiring a &amp;quot;Full Trust&amp;quot; security zone.  Because the Order Express binaries are not digitally signed, it is unfortunately not possible to set a deployment policy to allow Order Express to be installed independently of other ClickOnce applications.  Subsequently, it is suggested (although not ''currently'' required) that end-users of Order Express have administrative access of their local machine.&lt;br /&gt;
&lt;br /&gt;
Additional information regarding ClickOnce can be found at the following link: http://msdn.microsoft.com/en-us/library/t71a733d.aspx&lt;br /&gt;
&lt;br /&gt;
In addition to the requirements of the security policy of the local machine, Order Express also has a number of requirements in terms of network connectivity.  At its very core, Order Express is an internet application, relying on its ability to synchronize data to and from remote systems to keep both manufacturers and dealers informed throughout the ordering process.&lt;br /&gt;
&lt;br /&gt;
Order Express must be able to access the following ports on remote machines.  In the interest of helping network administrators maintain network security during the deployment of Order Express, the information in the list below is granular enough to reliably identify network traffic from Order Express so that it can be allowed.&lt;br /&gt;
&lt;br /&gt;
==== Hosts And Ports ====&lt;br /&gt;
* Feature: Status Notifications&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;smtp.gmail.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;25:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;465:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;587:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
* Feature: ClickOnce Install/Update, Setup &amp;amp; Admin (Accessed via Web-Browser), Database Synchronization&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;*.evisionservices.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;80:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
* Feature: Catalog Install/Update, Image Install/Update &lt;br /&gt;
** Host: &amp;lt;code&amp;gt;s3.amazonaws.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition to the above, Order Express must be able to establish/maintain an ongoing connection to a remote SQL Server.&lt;br /&gt;
While the initial handshake only requires port &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt; to be open, additional ports must be available to complete the handshake process.  &lt;br /&gt;
&lt;br /&gt;
Refer to the following link for more information: https://support.microsoft.com/kb/287932/en-us&lt;br /&gt;
&lt;br /&gt;
== How do I uninstall the program? ==&lt;br /&gt;
[[File:Win8 ControlPanelUninstall.png|thumb|125px|Uninstall Programs]]&lt;br /&gt;
[[File:Win8 ControlPanelUninstall2.png|thumb|125px|Uninstalling Order Express]]&lt;br /&gt;
&lt;br /&gt;
Like other applications [[Order Express]] can be uninstalled from a computer using the '''Add/Remove Programs''' entry in the control panel.  This is usually sufficient to solve any problems that arise as a result of a failed installation, but this method does leave a few minor files behind on the local system.  These files rarely cause issues, but removing these files is an effective way to guarantee that an installation of Order Express is brand new.&lt;br /&gt;
&lt;br /&gt;
===Standard Uninstall===&lt;br /&gt;
# Open the ''Control Panel''&lt;br /&gt;
# Under ''Programs'', click ''Uninstall a program''&lt;br /&gt;
# Select ''Order Express 2.3'' in the list, and click ''Uninstall/Change''&lt;br /&gt;
# Confirm the uninstall on the dialog that appears.&lt;br /&gt;
&lt;br /&gt;
=== Extended (Full) Uninstall ===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform the steps outlined above in ''Standard Uninstall''&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Navigate to the following directory on the target computer:&lt;br /&gt;
 &amp;lt;code&amp;gt;%appdata%\..\Local\Apps\2.0\&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the folder that is '''not''' named ''Data''.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the only folder in this directory. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In this directory, the amount of folders is dependent upon the number of ClickOnce applications installed on the local machine.  &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Ensure that the folders are sorted by name, and locate any folders that '''begin''' with the text &amp;lt;code&amp;gt;orde...exe&amp;lt;/code&amp;gt; '''or''' &amp;lt;code&amp;gt;orde..tion&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;After locating those folders, back them up (copy them to the desktop) and then delete them.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;At this point Order Express has been completely removed from your system.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What Kind of Files and/or Folder(s) do I need access to? ==&lt;br /&gt;
[[Order Express]] application is a '''FULL TRUST''' application and will require the user to have '''WRITE''' permissions access to the following folders:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''AppData''' folder - It can be accessed as '''%APPDATA%''' in windows explorer. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Documents''' folder - It can be accessed as '''%USERPROFILE%\Documents''' in windows explorer. In older versions of windows it is also referred as '''MyDocuments''' folder.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Global Assembly Cache''' (GAC) - Order Express requires quite a few DLLs to run. Some are proprietary DLLs and they reside in the AppData cache. There are also a host of shared DLLs that needs to be installed and/or updated in the user's GAC during installation. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
Though ClickOnce installs are per-user, permission elevation may be required if there are prerequisites that require administrator privileges.&lt;br /&gt;
&lt;br /&gt;
Refer to this link for more information on ClickOnce security: https://msdn.microsoft.com/en-us/library/76e4d2xw.aspx&lt;br /&gt;
&lt;br /&gt;
== My question isn't on the list, what do I do?  ==&lt;br /&gt;
If your question is not listed above, please have the Manufacturer contact us and we'll do our best to answer your questions.&lt;br /&gt;
&lt;br /&gt;
=== See Also ===&lt;br /&gt;
* [[Order Express - Advanced Troubleshooting|Advanced Troubleshooting]]&lt;br /&gt;
* [[Order Express]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions</id>
		<title>Order Express - Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions"/>
				<updated>2018-04-12T15:01:01Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: minor edit to access info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains answers to a variety of common questions and issues regarding Order Express.  Please review the table of contents below to see if your question has been answered.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__ &amp;lt;!-- Force the table-of-contents to appear even if there are fewer than 4 categories on this page. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What are the system requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Minimum ====&lt;br /&gt;
These requirements are the minimum requirements for the program to run.  Only having the minimum system requirements may cause the program to run at a slower speed &amp;amp; display as unintended.&lt;br /&gt;
* 1.3GHz or faster processor&lt;br /&gt;
* Microsoft Windows 7&lt;br /&gt;
* 2GB of RAM&lt;br /&gt;
* 320MB of available hard-disk space&lt;br /&gt;
* 1024x768 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox, or Microsoft Internet Explorer 8, 9, or 10&lt;br /&gt;
&lt;br /&gt;
==== Recommended ====&lt;br /&gt;
* 2.0GHz or faster dual-core processor&lt;br /&gt;
* Microsoft Windows 10&lt;br /&gt;
* 4GB of RAM &lt;br /&gt;
* 10GB of available hard-disk space&lt;br /&gt;
* 1920x1080 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox or Microsoft Edge browser&lt;br /&gt;
&lt;br /&gt;
== What are the network requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Overview ====&lt;br /&gt;
Order Express is deployed to end users as a ClickOnce application requiring a &amp;quot;Full Trust&amp;quot; security zone.  Because the Order Express binaries are not digitally signed, it is unfortunately not possible to set a deployment policy to allow Order Express to be installed independently of other ClickOnce applications.  Subsequently, it is suggested (although not ''currently'' required) that end-users of Order Express have administrative access of their local machine.&lt;br /&gt;
&lt;br /&gt;
Additional information regarding ClickOnce can be found at the following link: http://msdn.microsoft.com/en-us/library/t71a733d.aspx&lt;br /&gt;
&lt;br /&gt;
In addition to the requirements of the security policy of the local machine, Order Express also has a number of requirements in terms of network connectivity.  At its very core, Order Express is an internet application, relying on its ability to synchronize data to and from remote systems to keep both manufacturers and dealers informed throughout the ordering process.&lt;br /&gt;
&lt;br /&gt;
Order Express must be able to access the following ports on remote machines.  In the interest of helping network administrators maintain network security during the deployment of Order Express, the information in the list below is granular enough to reliably identify network traffic from Order Express so that it can be allowed.&lt;br /&gt;
&lt;br /&gt;
==== Hosts And Ports ====&lt;br /&gt;
* Feature: Status Notifications&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;smtp.gmail.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;25:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;465:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;587:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
* Feature: ClickOnce Install/Update, Setup &amp;amp; Admin (Accessed via Web-Browser), Database Synchronization&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;*.evisionservices.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;80:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
* Feature: Catalog Install/Update, Image Install/Update &lt;br /&gt;
** Host: &amp;lt;code&amp;gt;s3.amazonaws.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition to the above, Order Express must be able to establish/maintain an ongoing connection to a remote SQL Server.&lt;br /&gt;
While the initial handshake only requires port &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt; to be open, additional ports must be available to complete the handshake process.  &lt;br /&gt;
&lt;br /&gt;
Refer to the following link for more information: https://support.microsoft.com/kb/287932/en-us&lt;br /&gt;
&lt;br /&gt;
== How do I uninstall the program? ==&lt;br /&gt;
[[File:Win8 ControlPanelUninstall.png|thumb|125px|Uninstall Programs]]&lt;br /&gt;
[[File:Win8 ControlPanelUninstall2.png|thumb|125px|Uninstalling Order Express]]&lt;br /&gt;
&lt;br /&gt;
Like other applications [[Order Express]] can be uninstalled from a computer using the '''Add/Remove Programs''' entry in the control panel.  This is usually sufficient to solve any problems that arise as a result of a failed installation, but this method does leave a few minor files behind on the local system.  These files rarely cause issues, but removing these files is an effective way to guarantee that an installation of Order Express is brand new.&lt;br /&gt;
&lt;br /&gt;
===Standard Uninstall===&lt;br /&gt;
# Open the ''Control Panel''&lt;br /&gt;
# Under ''Programs'', click ''Uninstall a program''&lt;br /&gt;
# Select ''Order Express 2.3'' in the list, and click ''Uninstall/Change''&lt;br /&gt;
# Confirm the uninstall on the dialog that appears.&lt;br /&gt;
&lt;br /&gt;
=== Extended (Full) Uninstall ===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform the steps outlined above in ''Standard Uninstall''&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Navigate to the following directory on the target computer:&lt;br /&gt;
 &amp;lt;code&amp;gt;%appdata%\..\Local\Apps\2.0\&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the folder that is '''not''' named ''Data''.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the only folder in this directory. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In this directory, the amount of folders is dependent upon the number of ClickOnce applications installed on the local machine.  &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Ensure that the folders are sorted by name, and locate any folders that '''begin''' with the text &amp;lt;code&amp;gt;orde...exe&amp;lt;/code&amp;gt; '''or''' &amp;lt;code&amp;gt;orde..tion&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;After locating those folders, back them up (copy them to the desktop) and then delete them.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;At this point Order Express has been completely removed from your system.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What Kind of Files and/or Folder(s) do I need access to? ==&lt;br /&gt;
[[Order Express]] application is a '''FULL TRUST''' application and will require the user to have '''WRITE''' permissions access to the following folders:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''AppData''' folder - It can be accessed as '''%APPDATA%''' in windows explorer. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Documents''' folder - It can be accessed as '''%USERPROFILE%\Documents''' in windows explorer. In older versions of windows it is also referred as '''MyDocuments''' folder.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Global Assembly Cache''' (GAC) - Order Express requires quite a few DLLs to run. Some are proprietary DLLs and they reside in the AppData cache. There are also a host of shared DLLs that needs to be installed and/or updated in the user's GAC during installation. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
Though ClickOnce installs are per-user, permission elevation may be required if there are prerequisites that require administrator privileges. For more information about elevated permissions, see .&lt;br /&gt;
&lt;br /&gt;
== My question isn't on the list, what do I do?  ==&lt;br /&gt;
If your question is not listed above, please have the Manufacturer contact us and we'll do our best to answer your questions.&lt;br /&gt;
&lt;br /&gt;
=== See Also ===&lt;br /&gt;
* [[Order Express - Advanced Troubleshooting|Advanced Troubleshooting]]&lt;br /&gt;
* [[Order Express]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions</id>
		<title>Order Express - Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Order_Express_-_Frequently_Asked_Questions"/>
				<updated>2018-04-12T14:38:55Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: added files and folder access requirements&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains answers to a variety of common questions and issues regarding Order Express.  Please review the table of contents below to see if your question has been answered.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__ &amp;lt;!-- Force the table-of-contents to appear even if there are fewer than 4 categories on this page. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What are the system requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Minimum ====&lt;br /&gt;
These requirements are the minimum requirements for the program to run.  Only having the minimum system requirements may cause the program to run at a slower speed &amp;amp; display as unintended.&lt;br /&gt;
* 1.3GHz or faster processor&lt;br /&gt;
* Microsoft Windows 7&lt;br /&gt;
* 2GB of RAM&lt;br /&gt;
* 320MB of available hard-disk space&lt;br /&gt;
* 1024x768 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox, or Microsoft Internet Explorer 8, 9, or 10&lt;br /&gt;
&lt;br /&gt;
==== Recommended ====&lt;br /&gt;
* 2.0GHz or faster dual-core processor&lt;br /&gt;
* Microsoft Windows 10&lt;br /&gt;
* 4GB of RAM &lt;br /&gt;
* 10GB of available hard-disk space&lt;br /&gt;
* 1920x1080 screen resolution&lt;br /&gt;
* Google Chrome, Mozilla Firefox or Microsoft Edge browser&lt;br /&gt;
&lt;br /&gt;
== What are the network requirements? ==&lt;br /&gt;
&lt;br /&gt;
==== Overview ====&lt;br /&gt;
Order Express is deployed to end users as a ClickOnce application requiring a &amp;quot;Full Trust&amp;quot; security zone.  Because the Order Express binaries are not digitally signed, it is unfortunately not possible to set a deployment policy to allow Order Express to be installed independently of other ClickOnce applications.  Subsequently, it is suggested (although not ''currently'' required) that end-users of Order Express have administrative access of their local machine.&lt;br /&gt;
&lt;br /&gt;
Additional information regarding ClickOnce can be found at the following link: http://msdn.microsoft.com/en-us/library/t71a733d.aspx&lt;br /&gt;
&lt;br /&gt;
In addition to the requirements of the security policy of the local machine, Order Express also has a number of requirements in terms of network connectivity.  At its very core, Order Express is an internet application, relying on its ability to synchronize data to and from remote systems to keep both manufacturers and dealers informed throughout the ordering process.&lt;br /&gt;
&lt;br /&gt;
Order Express must be able to access the following ports on remote machines.  In the interest of helping network administrators maintain network security during the deployment of Order Express, the information in the list below is granular enough to reliably identify network traffic from Order Express so that it can be allowed.&lt;br /&gt;
&lt;br /&gt;
==== Hosts And Ports ====&lt;br /&gt;
* Feature: Status Notifications&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;smtp.gmail.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;25:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;465:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;587:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
* Feature: ClickOnce Install/Update, Setup &amp;amp; Admin (Accessed via Web-Browser), Database Synchronization&lt;br /&gt;
** Host: &amp;lt;code&amp;gt;*.evisionservices.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;80:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:UDP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
* Feature: Catalog Install/Update, Image Install/Update &lt;br /&gt;
** Host: &amp;lt;code&amp;gt;s3.amazonaws.com&amp;lt;/code&amp;gt;&lt;br /&gt;
** Ports: &amp;lt;code&amp;gt;80:TCP&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;443:TCP&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition to the above, Order Express must be able to establish/maintain an ongoing connection to a remote SQL Server.&lt;br /&gt;
While the initial handshake only requires port &amp;lt;code&amp;gt;1433:TCP&amp;lt;/code&amp;gt; to be open, additional ports must be available to complete the handshake process.  &lt;br /&gt;
&lt;br /&gt;
Refer to the following link for more information: https://support.microsoft.com/kb/287932/en-us&lt;br /&gt;
&lt;br /&gt;
== How do I uninstall the program? ==&lt;br /&gt;
[[File:Win8 ControlPanelUninstall.png|thumb|125px|Uninstall Programs]]&lt;br /&gt;
[[File:Win8 ControlPanelUninstall2.png|thumb|125px|Uninstalling Order Express]]&lt;br /&gt;
&lt;br /&gt;
Like other applications [[Order Express]] can be uninstalled from a computer using the '''Add/Remove Programs''' entry in the control panel.  This is usually sufficient to solve any problems that arise as a result of a failed installation, but this method does leave a few minor files behind on the local system.  These files rarely cause issues, but removing these files is an effective way to guarantee that an installation of Order Express is brand new.&lt;br /&gt;
&lt;br /&gt;
===Standard Uninstall===&lt;br /&gt;
# Open the ''Control Panel''&lt;br /&gt;
# Under ''Programs'', click ''Uninstall a program''&lt;br /&gt;
# Select ''Order Express 2.3'' in the list, and click ''Uninstall/Change''&lt;br /&gt;
# Confirm the uninstall on the dialog that appears.&lt;br /&gt;
&lt;br /&gt;
=== Extended (Full) Uninstall ===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform the steps outlined above in ''Standard Uninstall''&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Navigate to the following directory on the target computer:&lt;br /&gt;
 &amp;lt;code&amp;gt;%appdata%\..\Local\Apps\2.0\&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the folder that is '''not''' named ''Data''.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the only folder in this directory. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In this directory, the amount of folders is dependent upon the number of ClickOnce applications installed on the local machine.  &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Ensure that the folders are sorted by name, and locate any folders that '''begin''' with the text &amp;lt;code&amp;gt;orde...exe&amp;lt;/code&amp;gt; '''or''' &amp;lt;code&amp;gt;orde..tion&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;After locating those folders, back them up (copy them to the desktop) and then delete them.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;At this point Order Express has been completely removed from your system.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What Kind of Files and/or Folder(s) do I need access to? ==&lt;br /&gt;
[[Order Express]] application is a '''FULL TRUST''' application and will require the user to have '''WRITE''' permissions access to the following folders:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''AppData''' folder - It can be accessed as '''%APPDATA%''' in windows explorer. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Documents''' folder - It can be accessed as '''%USERPROFILE%\Documents''' in windows explorer. In older versions of windows it is also referred as '''MyDocuments''' folder.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;'''Global Assembly Cache''' (GAC) - Order Express requires quite a few DLLs to run. Some are proprietary DLLs and they reside in the AppData cache. There are also a host of shared DLLs that needs to be installed and/or updated in the user's GAC during installation. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== My question isn't on the list, what do I do?  ==&lt;br /&gt;
If your question is not listed above, please have the Manufacturer contact us and we'll do our best to answer your questions.&lt;br /&gt;
&lt;br /&gt;
=== See Also ===&lt;br /&gt;
* [[Order Express - Advanced Troubleshooting|Advanced Troubleshooting]]&lt;br /&gt;
* [[Order Express]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Order_Express_-_Release_Notes</id>
		<title>Order Express - Release Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Order_Express_-_Release_Notes"/>
				<updated>2016-10-05T14:48:38Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: added more release dates&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;2.3.36.0 - October 5, 2016&amp;lt;br /&amp;gt;&lt;br /&gt;
2.3.35.0 - September 21, 2016&amp;lt;br /&amp;gt;&lt;br /&gt;
2.3.34.0 - September 1, 2016&amp;lt;br /&amp;gt;&lt;br /&gt;
2.3.33.0 - August 9, 2016 - minor fix&amp;lt;br /&amp;gt;&lt;br /&gt;
[[2.3.32.0|2.3.32.0 - August 8, 2016]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[2.3.31.0|2.3.31.0  - July 28, 2016]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back To [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Order_Express</id>
		<title>Order Express</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Order_Express"/>
				<updated>2016-10-05T13:21:11Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: Added Features to the List&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Order Express&lt;br /&gt;
| logo                   = Order express logo.png&lt;br /&gt;
| logo_size              = 150&lt;br /&gt;
| logo caption           = Order Express logo&lt;br /&gt;
| screenshot             = Demo opening.JPG&lt;br /&gt;
| caption                = Order Express running on Windows 10&lt;br /&gt;
| website                = {{URL|http://orderexpress.evisionservices.com}}&lt;br /&gt;
}}&lt;br /&gt;
'''Order Express''' is an ordering application developed by [[eVision Services]]. It primarily services manufacturers and dealers in the kitchen and bath industry by allowing them to obtain price quotes using up-to-the-minute pricing data directly from the manufacturers.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* Advanced Quoting and Ordering Solution&lt;br /&gt;
* Full Specials Manager&lt;br /&gt;
* Secure User Login and Catalog Selection&lt;br /&gt;
* Cloud Storage of all Quotes and Orders&lt;br /&gt;
* Offline Creation and Editing of Projects&lt;br /&gt;
* Integrate to ERP, Biz, or Manufacturing System &lt;br /&gt;
* Extremely Low Cost Per User&lt;br /&gt;
* Automatic Updating of Application&lt;br /&gt;
* Automatic Updating of Product Catalog  &lt;br /&gt;
&lt;br /&gt;
== Major Version History ==&lt;br /&gt;
&lt;br /&gt;
=== Version 2.0 ===&lt;br /&gt;
This was the first version of the desktop version of Order Express.  Previous versions were implemented as web applications.&lt;br /&gt;
&lt;br /&gt;
=== Version 2.1 ===&lt;br /&gt;
This version of Order Express introduced the concept of installing multiple catalogs alongside each other.  Previously users were only able to install a single catalog at a time, and were required to uninstall the application prior to installing one from another manufacturer.&lt;br /&gt;
&lt;br /&gt;
=== Version 2.2 ===&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Completely revised back-end architecture for saving and loading projects.  Projects that were stored in the legacy format are automatically converted to the new format when they are opened.  Projects stored in the new format are 1/10th the size of those stored in the previous format, substantially reducing the time needed to save and load projects.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Setup &amp;amp; Admin is no longer built into the application.  Instead, it has been replaced with a more robust version as a web application.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Version 2.3 ===&lt;br /&gt;
With this release, Order Express becomes substantially more reliable for users with slow or unstable internet connections.  Many features within Order Express now leverage our powerful &amp;quot;Web API&amp;quot; for the offloading of various tasks to a central server.  Our decision to use HTTP as our communications protocol allows us to consolidate numerous networking protocols into an industry-standard connection method that is almost universally allowed through corporate intranets, all without requiring complex configurations to the end-user network.&lt;br /&gt;
&lt;br /&gt;
== See Also == &lt;br /&gt;
* [[Order Express - Features|Features]]&lt;br /&gt;
* [[Order Express - Frequently Asked Questions|Frequently Asked Questions]]&lt;br /&gt;
* [[Order Express - Advanced Troubleshooting|Advanced Troubleshooting]]&lt;br /&gt;
* [[Order Express - Release Notes|Release Notes]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	<entry>
		<id>http://wiki.evisionservices.com/index.php?title=Notifications</id>
		<title>Notifications</title>
		<link rel="alternate" type="text/html" href="http://wiki.evisionservices.com/index.php?title=Notifications"/>
				<updated>2016-10-04T20:37:51Z</updated>
		
		<summary type="html">&lt;p&gt;Amisra: create notifications setup information page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information on how to setup Notification Settings. &lt;br /&gt;
&lt;br /&gt;
__FORCETOC__ &amp;lt;!-- Force the table-of-contents to appear even if there are fewer than 4 categories on this page. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Notification Settings ==&lt;br /&gt;
Set a user up to receive email notifications when a status is changed on an order or a special. (All Users)&lt;br /&gt;
&lt;br /&gt;
==== Select an Event ====&lt;br /&gt;
First select what Event you as the user would like to receive emails for. All status changes will be listed specifically for the user’s catalog line. Once the user has selected their Event, click '''Add'''.&lt;br /&gt;
&lt;br /&gt;
==== The Events table ====&lt;br /&gt;
Here the user will have the option to customize your notification settings. These settings will be specifically for the Event the user has chosen. Each Event that is offered can be added. However the user can not add the same Event more than once. '''Accounts''', '''User Type''' and '''Users''' are the options to customize.&lt;br /&gt;
&lt;br /&gt;
==== Select Accounts, User Type, Users ====&lt;br /&gt;
Under each of the dropdowns the user has the choice to select '''All''', '''None''', or '''Select'''. '''All''' will select every option. '''None''' will deselect previous choices. '''Select''' will allow the user to select specific choices. Each category is set up to be an ‘or’ indicator. A choice may be selected under each category. A notification will be sent for an Event when it falls under the criteria chosen for that category.&lt;br /&gt;
&lt;br /&gt;
==== Opt in for Email ====&lt;br /&gt;
The user will have the option to receive email notifications. The email check box will need to be selected if an email notification is desired. Once selected the user will get an email notification as well as a notification in their Order Express Inbox.&lt;br /&gt;
&lt;br /&gt;
==== Remove and Event ====&lt;br /&gt;
If the user no longer wants to receive notifications for an Event that was added then the user can delete the Event. The user can do so by clicking the ''waste-basket'' icon. This will completely remove the Event.&lt;br /&gt;
&lt;br /&gt;
==== Save and Close dialog ====&lt;br /&gt;
After finished with the Notifications Screen, two final options exist at the bottom of the screen. Select save to keep all changes made. Select cancel to void all changes to Notifications.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Select Notification Settings ==&lt;br /&gt;
Set up specifics option for notifications the user desires to receive&lt;br /&gt;
&lt;br /&gt;
==== Search option ====&lt;br /&gt;
The user can type inside the search field to search for a specific account, user type, or user. Or the user can select ''magnifying-glass'' icon which will show every option in the results field. Clicking ''clear-all'' icon will clear all search results.&lt;br /&gt;
&lt;br /&gt;
==== Search results table ====&lt;br /&gt;
Search results will be listed for the user to select which account(s), user type(s), or user(s) they would like to receive notifications on.&lt;br /&gt;
&lt;br /&gt;
==== Select options from search result ====&lt;br /&gt;
A select checkbox will appear with the search results at the end of every line. The user will need to select each checkbox on specific account(s), user type(s), or user(s) to indicate they would like notifications on those specific selections.&lt;br /&gt;
&lt;br /&gt;
==== Save and Close search ====&lt;br /&gt;
After finished with the Select Screen, two final options exist at the bottom of the screen. Select '''Save''' to keep all changes made. Select '''Cancel''' to void all changes.&lt;br /&gt;
&lt;br /&gt;
== My question isn't on the page, what do I do?  ==&lt;br /&gt;
If your question is not listed above, please have the Manufacturer contact us and we'll do our best to answer your questions.&lt;br /&gt;
&lt;br /&gt;
=== See Also ===&lt;br /&gt;
* [[Order Express - Advanced Troubleshooting|Advanced Troubleshooting]]&lt;br /&gt;
* [[Order Express]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>Amisra</name></author>	</entry>

	</feed>