Posts

Showing posts from 2010

Auctioneer/FAQ - Norganna's AddOns

Auctioneer/FAQ - Norganna's AddOns : "If you do want to start fresh, you can now do this from in-game. Simply type '/auc cleardata ALL' to clear all data from all servers and factions. Replace 'ALL' with 'server' or 'faction' to clear data only for the current server or faction, instead. - Sent using Google Toolbar"

Cuberick: Merge Bazaar Repositories With No Common Ancestor

Cuberick: Merge Bazaar Repositories With No Common Ancestor : "But what about merging branches with no common ancestor? Turns out this is pretty easy... In bazaar you can simply do the following: Change directory to the destination working copy. Execute the following command bzr merge /path/to/source-working-copy -r0..-1 Note the -r0..-1 part of the command. This tells bazaar to merge a range of revisions from the first revision to the most current. Now review and commit the changes. Notice that bazaar gives you an indication that all history is preserved by displaying a list of checkin comments. Nice. - Sent using Google Toolbar"

Renaming a network connection with netsh - Mike Wilbur's Blog - Site Home - MSDN Blogs

Renaming a network connection with netsh - Mike Wilbur's Blog - Site Home - MSDN Blogs : "netsh interface set interface name='Local Area Connection' newname='ExampleLan' - Sent using Google Toolbar"

PyMOTW: hmac - O'Reilly ONLamp Blog

PyMOTW: hmac - O'Reilly ONLamp Blog : "import hmac import hashlib digest_maker = hmac.new('secret-shared-key-goes-here', '', hashlib.sha1) f = open('hmac_sha.py', 'rb') try: while True: block = f.read(1024) if not block: break digest_maker.update(block) finally: f.close() digest = digest_maker.hexdigest() print digest - Sent using Google Toolbar"

WorkingWithTime - PythonInfo Wiki

WorkingWithTime - PythonInfo Wiki : "Working with Time Notably missing from this page are the capabilities of the Python datetime module, which was introduced in 2.3 and is very powerful. This page gives some basics of working with time in Python. More detail can be found in the time Module Documentation. Formats There are several ways to work with time: format Python seconds since the 'Epoch' time.time() tuple time.gmtime() string time.ctime() The Epoch is January 1st, 1970, midnight, on UNIX systems. On other systems, look at the results of time.gmtime(0) to discover the date of the Epoch. Measuring time in seconds since the Epoch is convenient for storage and comparing dates, because you only have a single number to consider. The tuple contains several values, arranged the following way: year, month 1-12, day 1-31, hour 0-23, minutes 0-59, seconds 0-61, day 0-6 (Mon-Sun), day 1-366, and DST -1,0,+1. 'DST' means 'daylight savings time.' For more infor

1.2 Installing ZenPacks - Open Source Network Monitoring and Systems Management

1.2 Installing ZenPacks - Open Source Network Monitoring and Systems Management : "#2. Installing ZenPacks ZenPacks are distributed as .egg files. Zenoss also supports .zip files. You can install ZenPacks from the command line on the Zenoss server, or from the Zenoss user interface. #2.1. Installing from the Command Line The following ZenPack command can be used from the command line to install ZenPack files. After installing or updating ZenPacks you need to restart Zenoss: zenpack --install zenoss restart If you have the source code for the ZenPack you can install directly from that rather than from a .egg or .zip file. The command is the same, you just specify the directory containing the source code. This copies the source code into either $ZENHOME/ZenPacks (for newer egg ZenPacks) or $ZENHOME/Products (for older style ZenPacks.) zenpack --install zenoss restart If you are developing a ZenPack you usually will want to maintain your source code outside of $ZENHOME/ZenPacks or $Z

TurboGears "offline" processes (crons, command-line commands, etc) - Plumbing Life's Depths

TurboGears "offline" processes (crons, command-line commands, etc) - Plumbing Life's Depths : "TurboGears 'offline' processes (crons, command-line commands, etc) TurboGears uses the Paste commands system to create command-line entry points that, for example, set up your database or start your server. When you get to larger projects, however, you will often have other things you need to do 'in the context of your application' from the command line, such as periodic imports of data, or cron'd database management tasks. Paste's command system is well documented, but it can take quite a bit of poking around to find out how to get SQLAlchemy, and TurboGears configured so that code that looks in tg.config gets the right values, and SQLAlchemy has access to your models. This little module (tgcommand.py) is my hacked-together attempt to make it easier to create new TG command-line commands. The idea is that for each application you will create a Bas

How to setup Client Scripting in OpenVPN Access Server

How to setup Client Scripting in OpenVPN Access Server : "How to setup Client Scripting in OpenVPN Access Server Sample Python Scripts --------------------- Launch a URL: #!/usr/bin/env python # On VPN connection initiation, launch a URL in the default browser. # Works on all client platforms (Windows, Mac, Linux). # Environmental Variables: # LAUNCH_URL -- URL to launch import os, webbrowser if os.environ['N_RECONNECTS'] == '0': webbrowser.open_new(os.environ['LAUNCH_URL']) Download and install an application on Windows: #!/usr/bin/env python # Download and install an MSI-based application on Windows. Leave a marker # file behind, so that we only install the application once per local user. # Environmental Variables: # MSI_URL -- URL of MSI file # MSI_HASH -- sha1 hash of MSI file, for security verification # MSI_OPT (optional) -- extra MSI arguments, such as /q for quiet install import os, urllib, scripthelper as sh url = os.environ['MSI_

You incorrectly receive an error message when you join a computer that is running Windows 7 or Windows Server 2008 R2 to a Samba 3-based domain

You incorrectly receive an error message when you join a computer that is running Windows 7 or Windows Server 2008 R2 to a Samba 3-based domain : "You incorrectly receive an error message when you join a computer that is running Windows 7 or Windows Server 2008 R2 to a Samba 3-based domain - Sent using Google Toolbar"

Custom Filters - Zimbra :: Forums

Custom Filters - Zimbra :: Forums : "sieve - you can even convert from procmail:/forums/users/7239-any-way-add-message-filters-command-line.html very simply it's kinda like: zmprov modifyAccount user@domain.com zimbraMailSieveScript 'require ['fileinto', 'reject', 'tag', 'flag'] or there's always: zmmailbox -z -m user@domain.com addFilterRule 'tag special' active any header 'subject' contains 'special' tag 'special' stop -this should also add it into the user's list of rules to manage from the web interface - Sent using Google Toolbar"

SQLite Frequently Asked Questions

SQLite Frequently Asked Questions : "(11) How do I add or delete columns from an existing table in SQLite. SQLite has limited ALTER TABLE support that you can use to add a column to the end of a table or to change the name of a table. If you want to make more complex changes in the structure of a table, you will have to recreate the table. You can save existing data to a temporary table, drop the old table, create the new table, then copy the data back in from the temporary table. For example, suppose you have a table named 't1' with columns names 'a', 'b', and 'c' and that you want to delete column 'c' from this table. The following steps illustrate how this could be done: BEGIN TRANSACTION; CREATE TEMPORARY TABLE t1_backup(a,b); INSERT INTO t1_backup SELECT a,b FROM t1; DROP TABLE t1; CREATE TABLE t1(a,b); INSERT INTO t1 SELECT a,b FROM t1_backup; DROP TABLE t1_backup; COMMIT; -

How-to: Convert mysql to sqlite | JBipNet

How-to: Convert mysql to sqlite | JBipNet : "--compatible=ansi --skip-opt generator > dumpfile - Sent using Google Toolbar"

Old Nabble - Turbogears General - how to return csv data?

Old Nabble - Turbogears General - how to return csv data? : "e.g. like this @expose(content_type='text/csv') def csv(self): stream = StringIO() writer = csv.writer(stream, dialect='excel') writer.writerow(['Spam'] * 5 + ['Baked Beans']) writer.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam']) output = stream.getvalue() stream.close() return output For creating real Excel files you can use this: http://www.python-excel.org - Sent using Google Toolbar"

Cleaning up your Contacts with Contact Cleaner » Zimbra :: Blog

Cleaning up your Contacts with Contact Cleaner » Zimbra :: Blog : "- Sent using Google Toolbar"

How can I access Time Machine backup data for other computers? :: Free Tech Support :: Ask Dave Taylor!®

How can I access Time Machine backup data for other computers? :: Free Tech Support :: Ask Dave Taylor!® : "- Sent using Google Toolbar"

linsec.ca - DansGuardian: A Content Filtering System

linsec.ca - DansGuardian: A Content Filtering System : "- Sent using Google Toolbar" Good list of files and what the represent.

Python: Getting TurboMail to work with TurboGears 2.0 | 5dollarwhitebox.org

Python: Getting TurboMail to work with TurboGears 2.0 | 5dollarwhitebox.org : "http://www.python-turbomail.org/ - Sent using Google Toolbar" Good start to getting TG2 and TurboMail3 working. With TG-2.1 and TurboMail-3.0.3 in pypi everything is really easy now.

HOWTO patch Nexenta (open source)

> I like the built in patcher in the Openfiler GUI. I’m not sure how Nexenta does patching. Just run “$ setup appliance upgrade nms” to upgrade the Web UI or “$ setup appliance upgrade” to upgrade the base OS software in Nexenta Community Edition. Both commands should be run as ‘root’. $ setup appliance upgrade nms $ setup appliance upgrade http://greg.porter.name/wordpress/?p=590

TurboGears 2.1 Standard Installation

$ virtualenv --no-site-packages -p python2.6 tg2env $ cd tg2env/ $ source bin/activate (tg2env)$ easy_install -i http://www.turbogears.org/2.1/ downloads/current/index tg.devtools (tg2env)$ paster quickstart example (tg2env)$ cd example/ (tg2env)$ python setup.py develop (tg2env)$ nosetests (tg2env)$ paster setup-app development.ini (tg2env)$ paster serve development.ini (tg2env)$ deactivate Upgrading TurboGears easy_install -U -i http://www.turbogears.org/2.1/downloads/current/index tg.devtools

Logging to a Database with Rsyslog

rsyslog and postgres in reference to: "Logging to a Database with Rsyslog" - Logging to a Database with Rsyslog LG #172 ( view on Google Sidewiki )

WoW Armory request throttle

http://bit.ly/cSKHWd in reference to: Breaking News: Blizzard Implements New Armory Throttling Policy? - Tard Factor ( view on Google Sidewiki )

Verifying ESX virtual machine file integrity

vmware http://bit.ly/aTziTg in reference to: VMware KB: Verifying ESX virtual machine file integrity ( view on Google Sidewiki )

Recreating a missing virtual machine disk (VMDK) descriptor file

vmware http://bit.ly/9rCdDR in reference to: VMware KB: Recreating a missing virtual machine disk (VMDK) descriptor file ( view on Google Sidewiki )

Zimbra Briefcase URL's not using HTTPS

http://bit.ly/b27jfx in reference to: "Briefcase URL's not using HTTPS" - [SOLVED] Briefcase URL's not using HTTPS - Zimbra :: Forums ( view on Google Sidewiki )

http://www.elitistarmory.com/ down?

Can't find any info on why http://www.elitistarmory.com/ is down. Google search shows nothing. No response from the domain owners. 10 pages of Google search results doesn't show any more information. Posting this blog so Google picks it up and maybe someone can enlighten us? http://ressme.wordpress.com/2010/03/02/elitist-armory/#comment-19

SYSPRO6 SRSPRTWN.int Error when printing

This is he solution from the Syspro support zone. Basically, replace the file in: *C:\Program Files\Common Files\Business Objects\3.0\bin\usp10.dll or *C:\Program Files(x86)\Common Files\Business Objects\3.0\bin\usp10.dll (Depending on which OS you're using) With the one from : C:\Windows\System32\usp10.dll or C:\Windows\SysWow64\usp10.dll (Dependng on which OS you're using)

Print from Mac OS X Snow Leopard to a Windows 7 Shared Printer [RSS Feed] 1/23/2010 10:08:23 AM Print from Mac OS X Snow Leopard to a Windows 7 Shared Printer Permalink

http://bit.ly/95VG0x in reference to: Print from Mac OS X Snow Leopard to a Windows 7 Shared Printer ( view on Google Sidewiki )

OSX Flush DNS Cache

dscacheutil -flushcache http://bit.ly/9KRuIH in reference to: 10.5: Flush DNS cache - Mac OS X Hints ( view on Google Sidewiki )

How to disable iptables modification by Access Server

http://bit.ly/beIvvY in reference to: How to disable iptables modification by Access Server ( view on Google Sidewiki ) ./confdba --mod --key=iptables.vpn.disable.nat --value=False --prof=Default ./confdba --mod --key=iptables.vpn.disable.filter --value=False --prof=Default ./confdba --mod --key=iptables.vpn.disable.nat --value=False --prof=Default

How to rebrand the OpenVPN Access Server Web UI

http://bit.ly/8WYY9u in reference to: How to rebrand the OpenVPN Access Server Web UI ( view on Google Sidewiki )

Merge bazaar repo with no common ancestor

http://bit.ly/bDGBjZ in reference to: Cuberick: Merge Bazaar Repositories With No Common Ancestor ( view on Google Sidewiki )

Windows XP How to Disable File Synchronization

http://bit.ly/ab3F0w in reference to: "Windows XP How to Disable File Synchronization" - Windows XP How to Disable File Synchronization ( view on Google Sidewiki )

Extending the System Disk in Windows Server 2008

http://bit.ly/cfLZOi in reference to: Extending the System Disk in Windows Server 2008 @ Jonathan Medd's Blog ( view on Google Sidewiki )

Expanding a drive within a VMWare image

http://bit.ly/3khFA7 in reference to: Expanding a drive within a VMWare image at Sean Deasy ( view on Google Sidewiki )

Active@ Disk Image 4.0

http://www.disk-image.net/ Looks like it has the same functionality as Acronis but a lot cheaper. in reference to: "Active@ Disk Image 4.0" - Active@ Disk Image. Windows & Servers Backup Software. Win XP, 7, 2003, 2008, Vista. ( view on Google Sidewiki )

ReadyNAS Pro & NVX – Boot/Diagnostics Menu

If you really brick your ReadNAS here's how to recover. http://goo.gl/uw3G in reference to: "ReadyNAS Pro & NVX – Boot/Diagnostics Menu" - ReadyNAS Pro & NVX – Boot/Diagnostics Menu | The Bott Blog ( view on Google Sidewiki )

ReadyNAS default login and password

Prior to RAIDiator 4.0, the default login and password is 'admin' and 'infrant1'. Starting with RAIDiator 4.0, login and password is 'admin' and 'netgear1'. Please make sure you change the admin password after doing a factory default. http://goo.gl/Na7L in reference to: "Prior to RAIDiator 4.0, the default login and password is 'admin' and 'infrant1'. Starting with RAIDiator 4.0, login and password is 'admin' and 'netgear1'. Please make sure you change the admin password after doing a factory default." - NETGEAR ReadyNAS • Frequently Asked Questions ( view on Google Sidewiki )

ReadyNAS NV+ Squid plug-in

http://goo.gl/phSb http://github.com/mnot/squid- readynas/downloads in reference to: "http://github.com/mnot/squid-readynas/downloads" - NETGEAR ReadyNAS • View topic - Squid plug-in ( view on Google Sidewiki )

ReadyNAS and Squid Proxy-Cache

http://goo.gl/r8Nb http://www.readynas.com/ contributed/super-poussin/PRO- Squid_1.2.bin in reference to: "Squid Proxy-Cache" - NETGEAR ReadyNAS • View topic - Squid Proxy-Cache ( view on Google Sidewiki )

The suck that is Microsoft: You may experience performance problems when you are working with items in a large .pst file or in a large .ost file in Outlook 2007

http://goo.gl/xQZt in reference to: "You may experience performance problems when you are working with items in a large .pst file or in a large .ost file in Outlook 2007" - You may experience performance problems when you are working with items in a large .pst file or in a large .ost file in Outlook 2007 ( view on Google Sidewiki )

Zimbra ZCS Connector for Outlook Performance

http://goo.gl/16ME in reference to: "ZCS Connector for Outlook Performance" - ZCS Connector for Outlook Performance - Zimbra :: Wiki ( view on Google Sidewiki )

The suck of Microsoft:Windows Server 2008 Password Complexity Requirements

* Passwords cannot contain the user’s account name or parts of the user’s full name that exceed two consecutive characters. * Passwords must be at least six characters in length. * Passwords must contain characters from three of the following four categories: 1. English uppercase characters (A through Z). 2. English lowercase characters (a through z). 3. Base 10 digits (0 through 9). 4. Non-alphabetic characters (for example, !, $, #, %). in reference to: "Passwords cannot contain the user’s account name or parts of the user’s full name that exceed two consecutive characters. Passwords must be at least six characters in length. Passwords must contain characters from three of the following four categories: English uppercase characters (A through Z). English lowercase characters (a through z). Base 10 digits (0 through 9). Non-alphabetic characters (for example, !, $, #, %)." - Windows Server 2008 Password Complexity Requirements « th

Zimbra Outlook Troubleshooting Options

http://goo.gl/AyFx ZCOLogCtl.exe is installed when ZCS Connector for Outlook is installed. This logging control tool is in the \Program files\common files\system\msmapi\1036 in reference to: "ZCOLogCtl.exe is installed when ZCS Connector for Outlook is installed. This logging control tool is in the \Program files\common files\system\msmapi\1036" - Outlook Troubleshooting Options - Zimbra :: Wiki ( view on Google Sidewiki )

The suck that is Microsoft: How to audit user access of files, folders, and printers in Windows XP

http://goo.gl/yB4J in reference to: "How to audit user access of files, folders, and printers in Windows XP" - How to audit user access of files, folders, and printers in Windows XP ( view on Google Sidewiki )

Microsoft is the suck: .NET Patch Breaks vSphere Client

Read this thread if your vSphere client is busted: http://communities.vmware.com/ message/1549559#1549559 in reference to: VMware Communities: .NET Patch Breaks vSphere Client ... ( view on Google Sidewiki )

zimbra Managing Domains

Domain Masquerading http://goo.gl/JR9O in reference to: "Domain Masquerading" - Managing Domains - Zimbra :: Wiki ( view on Google Sidewiki )

CLI zmschedulebackup Network Edition only

zmschedulebackup -R f "0 1 * * 6" i "0 1 * * 0-5" d 8d "0 0 * * *" /opt/zimbra/bin/zmbackup -del 8d http://goo.gl/e9zm in reference to: "CLI zmschedulebackup Network Edition only" - CLI zmschedulebackup Network Edition only - Zimbra :: Wiki ( view on Google Sidewiki )

Give Your Older .pst File New Life in Outlook 2007

http://goo.gl/sBdg in reference to: "Give Your Older .pst File New Life in Outlook 2007" - Microsoft Outlook 2007: 10 Top Tips - PCWorld ( view on Google Sidewiki )

Google Chart Tools

Good stuff. Time strip out the internally maintained chart code and replace it with this! in reference to: "Google Chart Tools" - Google Chart Tools - Google Code ( view on Google Sidewiki )

SID list

http://support.microsoft.com/kb/243330

Your certificate was not installed due to the error : invalid request: missing required element: keysize

http://goo.gl/W5bw fixes the problem. Look at Krishopper's reponse at http://goo.gl/d0OT in reference to: [SOLVED] Can't install my commercial certificate - Zimbra :: Forums ( view on Google Sidewiki )

IE8 not working with WPAD?

1. Tools->Internet Options->Advanced->Reset 2. Closed IE and re-opened it in reference to: "Tools->Internet Options->Advanced->Reset Closed IE and re-opened it" - Internet Explorer isn't auto-discovering http://wpad/wpad.dat auto-config - Server Fault ( view on Google Sidewiki )

Whacked zimbra perms? The fix!

/opt/zimbra/libexec/zmfixperms in reference to: "/opt/zimbra/libexec/zmfixperms" - Zimbra file permissions - Zimbra :: Forums ( view on Google Sidewiki )

Activate Instant Messaging (IM) in Zimbra

su - zimbra zmprov mc default zimbraFeatureIMEnabled TRUE in reference to: "su - zimbra zmprov mc default zimbraFeatureIMEnabled TRUE" - Instant Messenger Protocol? - Zimbra :: Forums ( view on Google Sidewiki )

Admin Password Reset

su - zimbra zmprov sp in reference to: "su - zimbra zmprov sp <admin email address> <new password>" - Admin Password Reset - Zimbra :: Wiki ( view on Google Sidewiki )

Small Office Networking

# Map Windows Domain Groups to UNIX groups net groupmap add ntgroup="Domain Admins" unixgroup=root type=d net groupmap add ntgroup="Domain Users" unixgroup=users type=d net groupmap add ntgroup="Domain Guests" unixgroup=nobody type=d in reference to: "# Map Windows Domain Groups to UNIX groups net groupmap add ntgroup="Domain Admins" unixgroup=root type=d net groupmap add ntgroup="Domain Users" unixgroup=users type=d net groupmap add ntgroup="Domain Guests" unixgroup=nobody type=d" - Chapter 2. Small Office Networking ( view on Google Sidewiki )

How to change IP address of your ESX Server

There is a time when you need to change the IP adress your ESX host. You can’t do it in the VI client Graphical User Interface. The only thing you can do is to go to the in reference to: "There is a time when you need to change the IP adress your ESX host. You can’t do it in the VI client Graphical User Interface. The only thing you can do is to go to the" - How to change IP address of your ESX Server | ESX Virtualization ( view on Google Sidewiki )

Windows 7 Shutdown Command Line Switches

Full List of Windows 7 Shutdown Switches in reference to: Windows 7 Shutdown Command Line Switches ( view on Google Sidewiki )

Karmic drops vol_id, superceded by blkid

Important stuff to know. in reference to: Karmic drops vol_id, superceded by blkid | Rebel Zero ( view on Google Sidewiki )

export HISTTIMEFORMAT="%F %T "

Good bash stuff. in reference to: export HISTTIMEFORMAT="%F %T " - Time-stamp your bash history « Varyable’s Blog ( view on Google Sidewiki )

CrashPlanPRO Client CLI commands

http://goo.gl/Av1A in reference to: PRO Client Commands [CrashPlan PRO Support Site] ( view on Google Sidewiki )

CrashPlan File System Layout

http://goo.gl/UHj9 in reference to: File System Layout [CrashPlan PRO Support Site] ( view on Google Sidewiki )

Microsoft Downloads &amp; Info

http://goo.gl/2nNC in reference to: "Microsoft Downloads & Info" - Microsoft Downloads Links ( view on Google Sidewiki )

Zimbra Documents and HTTP ERROR 500

http://goo.gl/o0xN in reference to: Error in NoteBook. system failure: wiki formatter failure - Zimbra - Forums ( view on Google Sidewiki )

Steps to change the Zimbra server's hostname using zmsetservername

http://goo.gl/PsJI in reference to: "Steps to change the Zimbra server's hostname using zmsetservername" - ZmSetServerName - Zimbra :: Wiki ( view on Google Sidewiki )

ERROR: service.INVALID_REQUEST (invalid request: can only be used with "zmprov -l/--ldap")

http://goo.gl/KxAm zmprov -l gaa in reference to: "zmprov -l gaa" - [SOLVED] 'zmprov gaa' fails - Zimbra - Forums ( view on Google Sidewiki )

Connect to a Headless CrashPlan Desktop

http://goo.gl/ejeo Works like a charm in reference to: "Connect to a Headless CrashPlan Desktop" - Connect to a Headless CrashPlan Desktop [CrashPlan Support Site] ( view on Google Sidewiki )

Maximum IMAP Message Size Limit not just MTA Size Limit

Increase the MaxSize on IMAP zmprov mcf zimbraFileUploadMaxSize http://goo.gl/cHrW in reference to: "Maximum IMAP Message Size Limit not just MTA Size Limit" - Zimbra Email Size Limit - Zimbra - Forums ( view on Google Sidewiki )

Using DFS Shares in Leopard

Well, same problem under snow leopard. Could not figure out why DFS shares aren't work. http://goo.gl/Xlvw Having endured for years the nuisance of having to check my Windows machine’s obtuse property dialog boxes to manually resolve pathnames such as \\domain\fs\share into something like \\server\hidden$\share that I could actually mount on my Mac (as smb://server/hidden$/share, of course), I eventually decided to do something about it. in reference to: "Having endured for years the nuisance of having to check my Windows machine’s obtuse property dialog boxes to manually resolve pathnames such as \\domain\fs\share into something like \\server\hidden$\share that I could actually mount on my Mac (as smb://server/hidden$/share, of course), I eventually decided to do something about it." - Using DFS Shares in Leopard - Tao of Mac ( view on Google Sidewiki )

FAQ for imapsync

http://goo.gl/nV92 in reference to: "FAQ for imapsync" - http://www.linux-france.org/prj/imapsync/FAQ ( view on Google Sidewiki )

Zimbra web services https only

http://goo.gl/Fxjs 1. Type zmtlsctl [mode] and press Enter. 2. Type zmcontrol stop and press Enter. 3. When everything is stopped, type zmcontrol start and press Enter. in reference to: "Type zmtlsctl [mode] and press Enter. Type zmcontrol stop and press Enter. When everything is stopped, type zmcontrol start and press Enter." - CLI zmtlsctl to set Web Server Mode - Zimbra :: Wiki ( view on Google Sidewiki )

Add/Remove Programs in Windows Vista

http://goo.gl/lxqY in reference to: "Add/Remove Programs in Windows Vista" - Add/Remove Programs in Windows Vista ( view on Google Sidewiki )

How to Disable and Turn Off UAC in Windows 7

http://goo.gl/uvdz in reference to: "How to Disable and Turn Off UAC in Windows 7" - How to Disable and Turn Off UAC in Windows 7 » My Digital Life ( view on Google Sidewiki )

Windows 7 Network File Sharing Fix

http://goo.gl/qxAh in reference to: "Windows 7 Network File Sharing Fix" - Windows 7 Network File Sharing Fix – Tanner Williamson ( view on Google Sidewiki )

Mac OS X keyboard shortcuts

http://goo.gl/o3Qm in reference to: "Mac OS X keyboard shortcuts" - Mac OS X keyboard shortcuts ( view on Google Sidewiki )

Problems with Win7 and Samba3?

Here is a great thread about the problem with Windows7 and Samba3. http://goo.gl/pSpf in reference to: Old Nabble - Samba - General - Windows 7 RC ( view on Google Sidewiki )

The fun that is SYSPRO licenses

Just cut-n-paste from google regarding a license issue and SYSPRO Seems to only be accessible as cached page in google adding the info here so it doesn't get lost: After I install the Syspro Client and run it for the first time, I get a dialog box from IMPCSC.EXE that reads: "The license database for Net Express Application Server does not exist and is required to run your application. If you have received a license with your applcation, install it using AppTrack." Then, SysPro dies. sad.gif I am seeking tips, trickhelp to get SysPro installed on this PC. FIX 1. Go to the registry and locate the following:' HKEY_LOCAL_MACHINE\SOFTWARE\Micro Focus\' (to go to the registry click on Start > Run, and type Regedit) 2. Delete the 'ASLMF' key. (if it exists). 3. Go to the \syspro60\base folder see if there is a file called 'mfasdb'. If this file exists then delete it. 4. Go to Start > Run click on the Browse button. 5. Select 'Client.exe' lo

Loggen and Support Documentation

Finally found where to download loggen! http://goo.gl/i266 in reference to: "Loggen and Support Documentation" - Best thing since sliced bread: Loggen and Support Documentation ( view on Google Sidewiki )

Iceberg 1.2.8

Use LogGen to get the difference and then IceBerg to bundle it all up? in reference to: "Iceberg 1.2.8" - Apple - Downloads - Development Tools - Iceberg ( view on Google Sidewiki )

Use logGen for re-packaging OS X installers

http://goo.gl/zJn0 Thinking of using the above to help(?) automate the upgrades/deployment of MS Office on OSX. in reference to: "Use logGen for re-packaging OS X installers" - Use logGen for re-packaging OS X installers - Mac OS X Hints ( view on Google Sidewiki )

Command line version of Microsoft AutoUpdate?

http://goo.gl/Ms6M The convoluted software upgrade game that is Microsoft software under OSX. in reference to: "Command line version of Microsoft AutoUpdate?" - Command line version of Microsoft AutoUpdate? ( view on Google Sidewiki )

Error login : [zimbra.xxxx.xxx] with user [kawalec@host1.org] auth [LOGIN]: 3 NO cleartext logins disabled

Blah, Sidewiki can't be used on SSL'd pages, so putting this in the old-fashioned way. Ran into this error "3 NO cleartext logins disabled", solution is documented here http://goo.gl/igLe

Guide to imapsync and Zimbra

Used this page on how to use imapsync to get email from Scalix into Zimbra. http://goo.gl/jVuk in reference to: "zmprov mcf zimbraMtaMaxMessageSize 50000000" - Guide to imapsync - Zimbra :: Wiki ( view on Google Sidewiki )

More info about chat history in Zimbra

http://goo.gl/hnpa in reference to: "zmprov mc default zimbraFeatureInstantNotify TRUE" - IM Chat History - Page 2 - Zimbra - Forums ( view on Google Sidewiki )

Setting up Adium as IM client to Zimbra

Straight forward OS configuration for Adium to Zimbra IM. http://goo.gl/S0Tx in reference to: Using your Zimbra email address for instant messaging | Zimbra tips, examples & hosting blog. ( view on Google Sidewiki )

Zimbra 6.0 supported LDAP attributes

http://goo.gl/QBwV /opt/zimbra/openldap/etc/ openldap/zimbra.schema has the complete list. 6.0.6 /opt/zimbra/openldap-2.4.21.7z/etc/openldap/schema/zimbra.schema in reference to: "/opt/zimbra/openldap/etc/openldap/zimbra.schema has the complete list." - zmprov attributes - Zimbra - Forums ( view on Google Sidewiki )

Scalix to Zimbra migration

http://goo.gl/ToGV Start of my research on how to migrate Scalix users to Zimbra. in reference to: Moving from Scalix to Zimbra - Zimbra - Forums ( view on Google Sidewiki )

Windows 7 - Local Users and Groups Manager - Open

http://goo.gl/qnow in reference to: "Windows 7 - Local Users and Groups Manager - Open" - Local Users and Groups Manager - Open - Windows 7 Forums ( view on Google Sidewiki )

Windows 7 - Built-in Administrator Account - Enable or Disable

http://goo.gl/fgea in reference to: "Windows 7 - Built-in Administrator Account - Enable or Disable" - Built-in Administrator Account - Enable or Disable - Windows 7 Forums ( view on Google Sidewiki )

gSyncit v2.0

http://goo.gl/LdAS Not thrilled with it, but it seems to work. Not sure why I can't find anything as effective as SpanningSync (osx app) for Outlook/Windows. in reference to: "gSyncit v2.0" - gSyncit - Google Calendar Sync for Microsoft Outlook Calendars and Contacts - G1 t mobile Android iPhone ActiveSync Palm Pre Apple CompanionLink SyncMyCal ( view on Google Sidewiki )

Service Tag to Express Code

Nice! http://goo.gl/cMoG in reference to: "Dell-Number Widget" - Converter: Dell Service Tag to Express Service Code - Creativyst: Explored, Designed, Delivered.(sm) ( view on Google Sidewiki )

View DELL Service Tag and Express Service Code From Linux and Windows

http://goo.gl/3tt5 in reference to: "View DELL Service Tag and Express Service Code From Linux and Windows" - View DELL Service Tag and Express Service Code From Linux and Windows ( view on Google Sidewiki )

Mail slowing you down? Rebuild its database

http://goo.gl/oEXY in reference to: Mail slowing you down? Rebuild its database ( view on Google Sidewiki )

Location of Sysprep Files When you Install vCenter on a Windows 2008 Server

http://goo.gl/006V in reference to: "Location of Sysprep Files When you Install vCenter on a Windows 2008 Server" - Location of Sysprep Files When you Install vCenter on a Windows 2008 Server « Virtualization, Windows, Infrastructure and all that “stuff” in-between ( view on Google Sidewiki )

Scattered Shots: Extreme soloing

Scattered Shots: Extreme soloing http://goo.gl/BPxJ in reference to: "Scattered Shots: Extreme soloing" - Scattered Shots: Extreme soloing ( view on Google Sidewiki )

Migrate a user profile in 7 easy steps

Have you ever had a profile problem? No, not you, never. You have a laptop or a regular computer the was in a domain, but now does not have access to the domain. Below are the steps to allow you to control that profile information. http://goo.gl/7sd6 in reference to: "Have you ever had a profile problem? No, not you, never. You have a laptop or a regular computer the was in a domain, but now does not have access to the domain. Below are the steps to allow you to control that profile information." - Migrate a user profile in 7 easy steps - Windows Server Clustering & PCNews ( view on Google Sidewiki )

Speed Up Outlook with the Weight Diet Add-in!

The more emails you get in your Outlook mailbox, the slower Outlook gets. Weight Diet is an Outlook add-in designed to help you speed up your Outlook sessions by reducing your mailbox size without having to archive or delete your important emails. http://goo.gl/LHU9 in reference to: "The more emails you get in your Outlook mailbox, the slower Outlook gets. Weight Diet is an Outlook add-in designed to help you speed up your Outlook sessions by reducing your mailbox size without having to archive or delete your important emails." - How to Speed Up Outlook ( view on Google Sidewiki )

How to use the Inbox Repair Tools to recover e-mail messages in Outlook 2002, Outlook 2003, and Outlook 2007

How to use the Inbox Repair Tools to recover e-mail messages in Outlook 2002, Outlook 2003, and Outlook 2007 http://goo.gl/CM0a in reference to: "How to use the Inbox Repair Tools to recover e-mail messages in Outlook 2002, Outlook 2003, and Outlook 2007" - How to use the Inbox Repair Tools to recover e-mail messages in Outlook 2002, Outlook 2003, and Outlook 2007 ( view on Google Sidewiki )

How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option

How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option http://goo.gl/bL7i in reference to: "How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option" - How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option ( view on Google Sidewiki )

Repair corrupt Outlook PST files with two Microsoft utilities

Outlook PST file corruption is a fairly common occurrence. To help you troubleshoot PST failures, Microsoft provides two handy utilities: the Inbox Repair Tool and the Oversized OST And PST Crop Utility. http://goo.gl/sEhO in reference to: "Outlook PST file corruption is a fairly common occurrence. To help you troubleshoot PST failures, Microsoft provides two handy utilities: the Inbox Repair Tool and the Oversized OST And PST Crop Utility." - Repair corrupt Outlook PST files with two Microsoft utilities ( view on Google Sidewiki )

How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option

How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option in reference to: "How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option" - How to use the Inbox Repair Tool to recover messages in Outlook 2000 that is installed with Internet Mail Only option ( view on Google Sidewiki )

Repair corrupt Outlook PST files with two Microsoft utilities

Outlook PST file corruption is a fairly common occurrence. To help you troubleshoot PST failures, Microsoft provides two handy utilities: the Inbox Repair Tool and the Oversized OST And PST Crop Utility. in reference to: "Outlook PST file corruption is a fairly common occurrence. To help you troubleshoot PST failures, Microsoft provides two handy utilities: the Inbox Repair Tool and the Oversized OST And PST Crop Utility." - Repair corrupt Outlook PST files with two Microsoft utilities ( view on Google Sidewiki )

Postfix 2.7.0 stable release available

Postfix 2.7.0 stable release available

Windows 7 and Samba 3 interoperability

HKLM\SYSTEM\CCS\Services\ LanmanWorkstation\Parameters DWORD DomainCompatibilityMode 1 DWORD DNSNameResolutionRequired 0 in reference to: "HKLM\SYSTEM\CCS\Services\LanmanWorkstation\Parameters DWORD DomainCompatibilityMode 1 DWORD DNSNameResolutionRequired 0" - Windows 7 and Samba 3 interoperability ( view on Google Sidewiki )

Help info for setting up winbind

Good setup and example for winbind on a domain member samba server in reference to: Chapter 24. Winbind: Use of Domain Accounts ( view on Google Sidewiki )

"The suck" that is winbind configuration

On Ubuntu karmic I had to do: # net rpc join -S PDC -U Administrator in reference to: winbindd ( view on Google Sidewiki )

Scattered Shots: Can Beast Mastery raid?

Scattered Shots: Can Beast Mastery raid?

Upgrade Ubuntu 8.04 (Hardy Heron) Server to Ubuntu 8.10 (Intrepid Ibex) Server

This Tutorial provides instructions and notes on upgrading Ubuntu 8.04 (Hardy Heron) server to Ubuntu 8.10 (Intrepid Ibex), released on the 30th of October 2008. in reference to: "This Tutorial provides instructions and notes on upgrading Ubuntu 8.04 (Hardy Heron) server to Ubuntu 8.10 (Intrepid Ibex), released on the 30th of October 2008." - Upgrade Ubuntu 8.04 (Hardy Heron) Server to Ubuntu 8.10 (Intrepid Ibex) Server | Ubuntu Geek ( view on Google Sidewiki )

Windows Server 2008 R2 static IP

How to configure Windows Server 2008 R2 for a static IP address in reference to: Configure a Static IP Address ( view on Google Sidewiki )

Testing: Embedding a USA Karate Google Calendar