15 September, 2014

no more cleanfreebusy switch in Outlook 2013

Hi,

Just encountered a feature change I think you should be aware of.

Although microsoft writes that Outlook supports the /CleanFreeBusy switch (http://office.microsoft.com/en-us/outlook-help/command-line-switches-for-outlook-2013-HA102606406.aspx) they removed this option for outlook 2013 due to no free/busy information in public folders anymore (http://technet.microsoft.com/en-us/library/cc178954%28v=office.15%29.aspx)

You will get the following error:



Will try to find a solution and update you if something comes up..

09 September, 2014

Save Password related settings removed from GPP and Tasks

Hi,

Security, Security...

I found now that Microsoft found that saving passwords is risky and removed this feature from the settings.

The direct affected settings are:

  • GPP Drive Maps
  • GPP Local Users and Groups
  • GPP Scheduled Tasks
  • GPP Services
  • GPP Data Sources
  • Scheduled Tasks

No words...

The possible solutions are:
  1. workaround the issue with scripts
  2. Uninstall the update KB2928120 or /and KB2961899



Enjoy the uninstall...

01 September, 2014

I just became a Devolutions expert...

Hi,

I'm proud to say that I just became a Devolutions Expert, it is a close group of IT experts (only 10 was picked from all the world) who should help the Devolutions community.


I hope I can keep the expectations...

10 August, 2014

Free way to clean outlook contacts duplicates

Hello,

there are a lot of tools to remove duplicates outlook contacts but they are all (from what I looked) either free and do not work or work but costs money.

I found a free way to clean those duplicates.


  1. Download GO Contact Sync Mod
  2. Create or use a Gmail account for the settings of the program
  3. Sync all the contacts to Gmail by selecting the "Outlook to Google Only" setting option
  4. In Gmail go to contacts and then use the duplicate tool to clean the duplicates
  5. Sync all the contacts back to Outlook by selecting the "Google to Outlook Only" setting option (making sure that "Sync Deletion" is selected)

That's it, you are free from duplicated...


Snir


13 July, 2014

How to create a windows service that listen to a TCP port

Hello,

I've been looking for quite a while now for a way to create a windows service that just answer on a TCP port that I configure, didn't needed it to do anything just answer...
I needed it to utilize our F5 load balancer in a way that our help desk guys could remove a server from the pool by stopping a windows service.

So, the searches ended here is the recipe for the windows service TCP port answerer:



The Ingredients:
1 iperf.exe from https://iperf.fr
1 command line
1 registry settings

How to:
First Download the files and save them in a local directory (lets say "C:\TCP_Service").

Then, run he following command:

sc create TCP_Service binPath= "C:\TCP_Service\srvany.exe" start= auto

You can replace the TCP_Service string (after the "create" word) with any name you want (you can run sc create /? for more options)

Then save the following lines between the "====" as a parameters.reg

=========================================
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\TCP_Service\Parameters]
"AppParameters"="-s -p 1234"
"Application"="C:\\TCP_Service\\iperf.exe"


=========================================

You can change the location and port (here it is 1234) to what ever you like (the location is the same location of the srvany.exe file from the previous step.

Double click on the parameters.reg file and answer yes to all.

Run services.msc and you will see a new service named TCP_Service, start it.
Open cmd and type: telnet 127.0.0.1 1234

see that it connects...


Enjoy...

13 April, 2014

More efficient clould backup

Hi,

Following my last post on Using Syncovery and Amazon to backup your data to the cloud I moved to Google Drive sync.
I still use Syncovery as my windows sync tool and I use DriveSync on my android.
The low price caught my attention - 2$ for 100Gb per month, the lowest (reliable) could backup I found.


Have a good backup...

Snir

24 February, 2014

Unable to browse to \\tsclient\c path

Hi,

I tried to browse the \\tsclient\c path when connected via RDP with drive mapping in the client

I could not find the mapping, after a lot of searched it seems that the client had NoDrives restriction and if your drives are hidden you would not get mapped via RDP.
All settings can be on user based (Registry - HKCU, GPO - User Configuration)


Hope it helps...