Backtrack:  
 
showing posts tagged with 'computer'
edited by on August 23rd 2013, at 09:23
Since Windows 2008 and certain versions of 2003, automounting of iSCSI volumes is enabled by default. While this is fine for most setups, it is sometimes required that the volumes on your iSCSI targets are not automatically mounted when the server starts up (e.g. on a VMware backup server where you don't want to mount VMFS volumes).

There are several ways to disable automount.

Open an elevated command prompt and run either:

mountvol /N

or

diskpart automount disable

This will turn off automount so volumes will not be mounted automatically on a next reboot.

You can verify (and set) the automount status through the registry. Look at the value of HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSe  ...
edited by on August 22nd 2013, at 15:53

A note about installing the drivers for the Dell PowerVault TL2000/4000 on a Windows 2012 machine.

You can download the firmware from the Dell Support website. After extracting the package, do not install the driver using Device Manager. Doing so will not properly install the drivers (results in error code 37). Instead, install them using the included executable (install_nonexclusive.exe). Running this (elevated) will install the drivers the proper way, and the devices will start correctly.

edited by on August 21st 2013, at 10:18
I've encountered several issues on different HP Elitebook Folio 9470m ultrabooks, after updating the BIOS to its latest version (F.46).

One series of ultrabooks with an Intel Hybrid HD (with SSD cache) suddenly stopped working with a BSOD and refused to startup. Reinstallation with the original DVD oddly failed as well, either during installation, or after installing drivers. We've worked around the issue by using a Microsoft (non-HP) DVD to install Windows 8, then download the latest drivers from the HP site.

Another ultrabook with an SSD had another problem altogether, but still related to the BIOS update. After the update, USB devices started to fail intermittently. Both the   ...
edited by on June 6th 2013, at 11:00

When a backup is still indicated to run but isn't really (e.g. after a server crash or media failure), you can try to stop the backup by running the stop command using wbadmin (from an elevated command prompt):

wbadmin stop job

However, this sometimes does not work and the command hangs indefinitely. In this case, you can still stop the backup by stopping the Block Level Backup Engine Service service. If the service does not stop, use Task Manager to kill the process wbengine.exe, which does the same thing.

edited by on May 29th 2013, at 12:38

If you have an HP Officejet Pro 8500, and have issues with your prints not maintaining the page layout (portrait or landscape), try enabling Print directly to printer in the printer properties.

edited by on May 29th 2013, at 12:36

Important for PPPoE connections on a Dell Sonicwall: with the current firmwares, the MTU is not automatically lowered to 1492 when using PPPoE as your WAN interface type. By default, it remains on 1500, so you need to manually adjust it to 1492.

This can be done by going in to the interface properties → Advanced, where you'll find a field to set the MTU.

edited by on May 10th 2013, at 11:41

Here are the MMS settings for Proximus (a Belgian carrier):

  • APN: event.proximus.be
  • Username: mms
  • Password: mms
  • MMSC: mmsc.proximus.be/mms
  • MMS Proxy: 10.55.14.75:8080
  • Maximum message size: 300kb

iPhone users: the maximum message size has to be entered as 300000.

edited by on April 29th 2013, at 14:19
When migrating from McAfee to another antivirus, you need to uninstall McAfee Enterprise. When you have not installed it using GPO, it may become quite the task if you have a lot of clients to uninstall the product from. If you have a Windows Domain (optionally using GPO), you can do the uninstall via a logon script.

The installation can be performed by manually uninstalling the product using msiexec. This initiates a proper uninstallation procedure, and will result in a silent uninstall of McAfee Enterprise. Depending on the version you're using, adjust the GUID you see here:

VirusScan Enterprise 8.8:
msiexec /x {CE15D1B6-19B6-4D4D-8F43-CF5D2C3356FF} REMOVE=ALL REBOOT=R /q



VirusScan En  ...
edited by on April 29th 2013, at 09:52
Perhaps a silly post, but since the removal of the start menu in Windows 8, there are no more direct ways to shut down your computer. Right now, you have to go through the Charms menu → Settings → Power, and then choose to shut down or restart your computer, making it more of a hassle to turn it off (even worse than pressing Start to stop your computer).
I've gathered several methods and workaround to make the shutdown/restart options a bit more accessible. These are listed in this article. A lot of things I got from other posts on the internet, others I figured out myself.

Like I said earlier, the current way to exit Windows.

From your desktop, call up the Charms menu; that's th  ...
edited by on April 26th 2013, at 09:44
By default, the Start Screen only shows pinned applications. In order to see all applications, there's no direct way to do so. You can start typing something in the Start Screen, then clearing the search box, will provide you with access to the entire start menu, but it's not very convenient. An easier method would be to just have direct access to the "all apps" menu by using a shortcut (or tile if you will).

To do so, create a shortcut (or tile) pointing to:

%windir%\explorer.exe shell:::{2559a1f8-21d7-11d4-bdaf-00c04f60b9f0}

Place it anywhere you want. When hitting it, it will automatically bring you to the All apps menu. Pinning it to your task bar "sort" of simulat  ...
edited by on April 24th 2013, at 10:18
When attempting to open (not save) an attachment in Outlook, you may get an error similar to:

Message
Can't create file.

This is because Outlook's Temp folder is full. Outlook uses a temporary folder for storing attachments prior to opening them, similar to Internet Explorer does. Unfortunately, this folder can become quite large, causing these kind of error messages. Additionally, there's a 100-file limit on attachments which have the same name: e.g. when opening 100 times an attachment with the same name, opening the 101th attachment will fail with the above error.

The only solution is to clean the folder. There are some manual ways to do it, but I found a tool on the internet that does  ...
edited by on April 23rd 2013, at 16:51

Today, as of this afternoon, part of Apple's iCloud service is down. I noticed it just as I was attempting to sign in using the iCloud web application. I immediately got a nasty server error:

A quick look at the System Status page revealed issues with sign in:

edited by on April 23rd 2013, at 15:00

To enable text wrapping inside a <pre> tag, enable this in CSS:

pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
edited by on April 19th 2013, at 13:19

The (rather verbose) logs for the Windows SBS 2008 and 2011 POP3 Connector are located in the folder:

C:\Program Files\Windows Small Business Server\Logs\pop3connector
edited by on April 19th 2013, at 10:23
To make your custom cmdlets (functions) available in your PowerShell sessions, there are a few methods.

To do a one-time import of functions in your current session, store the functions in a PS1-file and save it somewhere. Then, in your session run the following:

. "path-to-file"

Notice the dot and a space behind it. This method, called "dotting" does a one-time import in the current session. This is useful for when you have functions that you don't use often, and don't want them to be available at all times.

An alternative method is to save the functions as a PSM1-file (extension .psm1) to create a module file, then use Import-Module to import your functions.

Import  ...
edited by on April 18th 2013, at 11:39

If your to-do bar shows up empty, or only displays a Loading... message, try to start Outlook with the parameter via Start → Run:

outlook.exe /resettodobar
edited by on April 15th 2013, at 08:57

To get a list of running SQL queries, log into the PostgreSQL CLI:

psql -U username database

Replace username and database with the proper values. Then run this query:

SELECT procpid,datname,usename,client_addr,waiting,query_start,current_query FROM pg_stat_activity;

Inside the list is also the procpid, which you will need to kill a running query. To kill, run this query, substituting with the proper procpid:

SELECT pg_cancel_backend(procpid);
edited by on April 15th 2013, at 08:40

You can script password changes in linux by using passwd without any additional effort. The syntax for this is:

echo "your-password" | passwd --stdin user
edited by on April 10th 2013, at 15:51
A very quick install guide to installing the 2X Application Server.

Install RDS roles and set up RDS licensing on your server (i.e. you need a working RDS/TS set up on your server).

Download and install the 2X Application Server.

Publish your applications.

Starting from 2008, configure the firewall so connections to port 80/tcp are accepted.

The same pointers to installing the 2X Cloud Portal. I assume 2X Application Server is already installed.

Install the following roles:IIS and dependencies

Application Development → ASP, ASP.NET 3.5 ASP.NET 4.5

IIS Management Scripts & Tools



Download and install the 2x Cloud Portal. Select the right

Disable caching in IIS: in IIS Man  ...
showing posts tagged with 'computer'
 
 
« September 2023»
SunMonTueWedThuFriSat
     12
3456789
10111213141516
17181920212223
24252627282930
 
Links
 
Quote
« If the batteries of a TV remote run out, why do we press the buttons so much harder? »