by ds | Jun 26, 2012 | C# .Net
By default, the Infragistics Version Utility does not upgrade the assemblies of your VS .Net project or solution from CLR 2.0 to 4.0 automatically. But you can do this via the “custom upgrade” link. In my case, I always got errors like No matching assembly...
by ds | Jun 25, 2012 | C# .Net
If you published new version of your ClickOnce / .Net project (C#, VB, …) and want to go back to a previous version, follow these steps: Open the directory where you deployed your project Go into the subdirectory “Application Files” and into the...
by ds | Jun 23, 2012 | Administration
Scenario: You use Windows AD with the Folder Redirection rules for AppData, Documents etc. for the AD users to redirect to a network or DFS share (which is useful for backups and fast logins). One user account has to be renamed. Rename the account in “Active...
by ds | Jun 21, 2012 | PHP
If you want to access dynamic variable names in Smarty and cannot use arrays for any reason, you can use a Smarty var nested in another Smarty var. Example: </pre> {foreach from=$workingDays item = item name=workingDaysList} {$date_{$item}} {/foreach}...
by ds | Jun 13, 2012 | MySQL
'MySQL Backup Script 'run with "cscript mysql_backup.vbs" 'Configuration server = "www" user = "backup" pw = "BackupPW" mysql = "mysql.exe" mysqldump = "mysqldump.exe" backupdir = "e:mysqlbackupwww"...
by ds | Jun 13, 2012 | MySQL
MySQLDump doesn’t create a full backup of a whole database by default. If you use MySQL triggers, views, events etc., they are not dumped. Use these parameters for including everything: mysqldump –routines=true –triggers=true –events=true -u...
by ds | Jun 13, 2012 | Software
Windows Notepad is not the most usefule text editor when working with files over 1 MB. TextPad works fine with files up to about 2 GB, but opening larger files, e.g. huge SQL dumps of databases, ends up in an error message saying the HDD is full. A useful free Windows...
by ds | Jun 11, 2012 | Administration
By default, moving files does not include their previous NTFS permissions. To include these, create or update this registry key before copying: HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionPoliciesExplorerForceCopyAclwithFile -> DWORD 1 For details, see...
by ds | Jun 11, 2012 | Administration
I had to add 2 hard disks to 4 extisting ones of a RAID5 which contained sensitive data. First thing to say, it definately works on the fly without losing data (the drive doesn’t get formatted) – but to be sure, backup the whole content. Then, open Dell...
by ds | Jun 11, 2012 | Virtualization
By default, it is only possible to export a Hyper-V virtual machine on a local hard drive. If you want to be able to export to a network share which is created on another machine, you have to add the computer name of the Hyper-V host to the security settings of the...