Showing posts with label Client. Show all posts
Showing posts with label Client. Show all posts

Wednesday, March 17, 2021

Move a window opening on a non-existent screen

 

  1. In Windows 10, 8, 7, and Vista, hold down the “Shift” key while right-clicking the program in the taskbar, then select “Move“. In Windows XP, right-click the item in the task-bar and select “Move“. ...
  2. Use your mouse or the arrow keys on your keyboard to move the window back onto the screen.

Monday, March 6, 2017

Thursday, September 3, 2015

Unread Mail folder under Favorites in Outlook

I got really used to having quick access to my unread messages using the Unread Mail favorites folder.

Every time I have a new account using Outlook, I always forget to add it back, since it's not done automagically anymore. Once I remember I want it back, I have to look up how to do it!

Sad thing is it's pretty easy.

At the bottom of the list of folders in your account, there's a Search Folder.

Right click Search Folders, and click on New Search Folder.















Make sure Unread mail is selected in the Search Folder box and click OK.




















The folder will appear on Search Folders, and then you can right click it and select Show in Favorites. Now you can find the email you left unread so you can deal with it later.... about a week ago. :)

Tuesday, June 23, 2015

Could not find stored procedure 'dbo.PRC_UTIL_DBFILEINUSE'

http://kb.swiftpage.com/app/answers/detail/a_id/28169/kw/could%20not%20find%20the%20stored%20procedure%20'dbo.prc_util_dbfileinuse'

  1. Close Sage ACT!.
  2. Click on Windows® Start button.
    • For Windows XP® select Run.
    • For Windows Vista® and Windows® 7, use the Search field.
  3. Enter the command Actdiag and press the Enter key.
  4. Within the Actdiag program, select Server on the menu bar.
  5. From the menu, select option Server Security.
  6. Click on the Reset SQL Password button. Click OK to continue when prompted (do not attempt to enter a password).
  7. Message Reset SQL Password will appear, click OK to complete the process.
  8. Close Actdiag.
  9. Click on the Windows Start button and select Run. For Windows Vista and Windows 7, enter the command Run into the Search field and press the Enter key.
  10. In the RUN window, enter the command Net Stop MSSQL$ACT7 and press the Enter key.
  11. Return to the RUN window, enter the command Net Start MSSQL$ACT7 and press the Enter key.
  12. Launch Sage ACT! and update the database.

Thursday, May 7, 2015

Outlook Secure temp folder

The Outlook Secure Temp folder is a super hidden folder, so, unless you know the full path (and it's randomly named folder, you're not finding it. And that's fun when you have a user that's trying to play the 100th copy of a file with the same file name (can you say "voicemail messages"?) and they get an error message.

To find the Secure Temp folder, you have to hop into the registry.

HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Security

Where the number is the number of your version of Outlook. 15 is Office 2013. The registy entry will give you the file path of the Secure Temp folder, go to it and delete the contents (after you make sure they don't have any attachments open from Outlook they haven't saved elsewhere). 

After that, the countdown to the next 100th file starts!

ADUC Additional Information tab



The Additional Info tab in Active Directory Users and Computers is like, my favorite thing evar. And just because of the Password Expiration date. All the other info it shows is just a bonus. SID is helpful for when profiles poo the bed.

Here's how to get it. This should be done on the computer you are using to to run ADUC, not the server.... unless you're using the server to view ADUC.

For x86 systems

  1. Download the Account Lockout Tools from MS. https://www.microsoft.com/en-us/download/details.aspx?id=18465 
  2. Copy acctinfo.dll to the %systemroot%\system32 folder 
  3. Register the service and dll with this command: regsvr32 acctinfo 
For x64 systems

  1. Download the same installer from above. 
  2. Extract the files. Move or copy acctinfo.dll to C:\Windows\SysWOW64. 
  3. Open a Command Prompt and navigate to C:\Windows\SysWOW64 
  4. Run regsvr32 acctinfo.dll. 
  5. Open Active Directory Users and Computers in the run dialog box: dsa.msc -32 
To ease access to the 32 bit Management Console, a shortcut can be created for dsa.msc -32

Monday, May 4, 2015

Robocopy

I'm trying to learn Robocopy. It's hilarious fun.

Protip: Don't call your Robocopy bat file Robocopy. You'll get stuck in an endless loop, and even if you terminate the command, the next robocopy script you run will go back to that same loop, and you'll go (even more) stark raving mad.

If you DID name your bat file Robocopy, and find that stupid script is looping over and over and over and over, simply rename the bat file to go on with your life. It took me far longer than it should and a few more Google searches than it should to figure that out.