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.
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.
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.
Here are the MMS settings for Proximus (a Belgian carrier):
iPhone users: the maximum message size has to be entered as 300000.
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:
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+ */ }
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
UPDATE: this article has been merged into Configure DNS for Office 365 using DirectAdmin → Configure Lync Online.
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
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);
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
To change a user's (login's) password via Transact-SQL, use this:
ALTER LOGIN User WITH PASSWORD = 'new-password' OLD_PASSWORD = 'old-password'; GO
« ‹ | November 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |