Revision
435 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 28 12:38:27 2012 UTC
(9 years, 9 months ago)
by
william
Diff to
previous 434
Wizard.vb: UpdateTFTP_withPXE_Linux() -> create a folder for the Server to connect to (this will hold the INITRD file)
Revision
432 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 28 12:19:34 2012 UTC
(9 years, 9 months ago)
by
william
Diff to
previous 430
frmAddTFTP.cs: when browsing folders for TFTP directory default to Desktop instead of MyComputer
** this gives local folder access as well as network folders
Revision
428 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 28 12:12:54 2012 UTC
(9 years, 9 months ago)
by
william
Diff to
previous 408
+ modified code for creating network and iso bootable images
** use the ServerName to connect to as part of the path for the INITRD file
Revision
405 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 28 09:38:56 2012 UTC
(9 years, 9 months ago)
by
william
Diff to
previous 402
+ Allow X-SERVER to detect Vertical Refresh rate (removed the overriding #define and made it permanent)
+ Image wizard will use VESA for the auto-detect gfx driver (removed the overriding #define and made it permanent)
Revision
383 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 28 07:54:59 2012 UTC
(9 years, 9 months ago)
by
william
Diff to
previous 382
+ writer.Write("SESSION_0_RDESKTOP_OPTIONS="); -> writer.Write("SESSION_0_RDESKTOP_OPTIONS=\"");
+ UserName/ServerDomain/Password can use format writer.write(" -X '{0}'", setting);
Revision
369 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 28 06:57:25 2012 UTC
(9 years, 9 months ago)
by
william
Diff to
previous 368
RDP Username option: writer.Write("-u '{0}'", UserName);
** no need to test if UserName.Length > 0, using this method
Revision
230 -
Directory Listing
-
[select for diffs]
Modified
Thu Aug 23 20:34:04 2012 UTC
(9 years, 10 months ago)
by
william
Diff to
previous 228
+ add conditional compiler defines so verbose logging can be turned on and off in TerminalServices.cs
Revision
206 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 18:03:31 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 205
+ fix issue where:
1) you install TSControlPanel on a system that does not have ATSAdmin installed
2) you do not have a DBServer or DBInstance setting in the registry
** fixed by using the entered ATSServer name, and retrieving the values using remote registry access
Revision
186 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 15:00:20 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 185
+ major fix to logging (all logs write to their respective logs and also get written into a single log)
Revision
181 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 13:13:11 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 180
static public int terminalServerConfig; // 0=Terminal server on this computer, 1=No terminal server on this computer, 2=other terminal servers.
Revision
178 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 12:15:31 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 177
set defaults
public static string strDatabaseServer = "localhost";
public static string strDatabaseInstance = "SQLEXPRESS";
Revision
170 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 11:14:18 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 169
+ each needs to be installed to a seperate folder
under AnywhereTS
ProgramFiles\AnywhereTS\TSControlPanel
ProgramFiles\AnywhereTS\ATSAdmin
Revision
164 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 09:53:12 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 163
frmConfigMode has been disabled
To enable: set compiler directive HAVE_FRMCONFIGMODE
in Build->Conditional compilation symbols
Revision
134 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 15 05:13:20 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 133
+ fix errors in database
+ logon to 'master' database and refer to our database is sql statments
+ remove empty GO statements from end of .sql files
Revision
125 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 14 11:44:52 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 124
+ remove reference to Sql Server SMO components
+ attempt to fix .sql script parsing to split on GO statements
Revision
124 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 14 11:14:54 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 123
if (!ClientRunScript(strFile, out ErrorInfo))
{
if (ErrorInfo != null)
throw ErrorInfo;
return false;
}
Revision
85 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 21:10:26 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 84
+ add support for database access from:
* SQL Server Express
* SQL Server (not Express)
* SQL Server MDF file
Revision
84 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 20:58:17 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 83
+ add initial database support (using the base .net database classes)
in case we need to use different database classes
Revision
79 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 02:24:25 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 78
change Database Name: AnywhereTS ==> AtsDb
+ need to add user settings
- set ServerIP
- set ServerDBInstance (SQLEXPRESS or other)
- need to set other settings
* build connection strings from these user settings at RunTime
and remove the atsConnectionString user settings
Connection string types:
- SQL Server Express Database
- SQL Server Database (Enterprise, etc [not an Express version])
- SQL Server Database File (.mdf)
Revision
78 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 02:21:43 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 77
+ comment-out NDC using statments that pass-in .sql script as context (this will keep the log file(s) lean an' mean)
Revision
77 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 01:35:49 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 76
+ fix syntax error in UpdateDatabase4.sql (commas cannot come after the last item in an ALTER table statement)
Revision
76 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 13 01:22:58 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 75
+ automatically replace the hardcoded database name AnyhwereTS with ATSGlobals.strDatabaseName when accessing SQLServerResources class
Revision
72 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 12 21:23:35 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 71
atsDataSet.Designer.cs:
ConnectionString = global::AnywhereTS.Properties.Settings.Default.atsConnectionString.Replace("AnywhereTS", "master");
Revision
71 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 12 21:04:56 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 70
+ add support to push Context Message Back onto the original stack (ie to preserve the stack, after we have peeked and popped all of the context messages)
Revision
51 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 12 16:21:35 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 50
fix an issue that was resolved by connecting to master database instead of AnywhereTS database
Revision
22 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 11 20:13:17 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 21
+ finish support for creating tables in an empty database (incase the database are pre-created, but contains no tables)
- still have AD login issues when creating the database from scratch (ie. it did not exist to begin with)
Revision
10 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 11 16:01:40 2012 UTC
(9 years, 11 months ago)
by
william
Diff to
previous 9
SetupDatabase():
sqlCon.ConnectionString = Properties.Settings.Default.atsConnectionString;
+ this enables the user to set the connection string
(they could use SQLEXPRESS or a full Server install with named instances)
Data Source=.\SQLEXPRESS
-or-
Data Source=IPADDRES\INSTANCENAME