Sign In
NicolBlog
Nicola Delfino's blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET
c#
Connected Services Framework
Debuging
Hyper-V
macro
MOSS
NicolTIP
outlook
powershell
Script
Sharepoint
Shortcut
Threading
vhd
VirtualBox
Vista
Visual Studio
Window 7
windows 2008
windows 2008 R2
Windows 2008R2
Windows Form
WP7
WPF
Archive
Archives
August 2011
(1)
June 2011
(1)
May 2011
(5)
March 2011
(2)
February 2011
(1)
January 2011
(1)
December 2010
(2)
November 2010
(1)
June 2010
(2)
May 2010
(2)
February 2010
(2)
January 2010
(3)
October 2009
(1)
June 2009
(2)
March 2009
(1)
February 2009
(4)
September 2008
(1)
August 2008
(1)
June 2008
(4)
April 2008
(2)
March 2008
(6)
January 2008
(3)
December 2007
(1)
October 2007
(3)
September 2007
(3)
August 2007
(2)
June 2006
(2)
May 2006
(1)
March 2006
(1)
February 2006
(1)
January 2006
(5)
December 2005
(2)
November 2005
(1)
October 2005
(1)
September 2005
(1)
July 2005
(1)
MSDN Blogs
>
NicolBlog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
NicolBlog
NicolTIP#027: How to update the UI from a worker thread on Windows Phone 7?
Posted
5 months ago
by
Nico LD
0
Comments
Use “Deployment.Current.Dispatcher.BeginInvoke”. sample: Deployment.Current.Dispatcher.BeginInvoke( delegate () { LoadingBar = Visibility.Collapsed; });
NicolBlog
GURU MEDITATION
Posted
7 months ago
by
Nico LD
2
Comments
After more than 18 years since I sold my last Amiga I have had again the pleasure of a GURU MEDITATION thanks to Virtual Box Thank you, Virtual Box!!!! Thank you!!!!!!! from Wikipedia: “ Guru Meditation is an error notice displayed by early versions of...
NicolBlog
NicolTIP#026: How to fix poor network performance connecting with windows 2008/R2 in Remote Desktop and File Share
Posted
8 months ago
by
Nico LD
0
Comments
Remote Desktop 6.0 leverages a new feature called auto-tuning for the TCP/IP receive window that could be causing the trouble. Window Auto-Tuning could have issues on some networks, and cheap SOHO routers. I fixed typing the following command on the server...
NicolBlog
NicolTIP#025–How to keep up to date your local copy of SysInternals tools
Posted
8 months ago
by
Nico LD
0
Comments
Even if http:\\live.sysinternals.com is great when you’re not on your pc, I usually prefer to have locally all Russinovich Tools. The problem is that you have to keep up to date your local copy, problem that, I resolved writing the following PowerShell...
NicolBlog
NicolTIP#024: How to reorder virtual machine list in virtualbox
Posted
9 months ago
by
Nico LD
2
Comments
Just select one machine and reposition it using CTRL + up/down arrows.
NicolBlog
SharePoint Warm Up Script comparision
Posted
9 months ago
by
Nico LD
0
Comments
Useful blog post to bookmark. http://sharepointconnoisseur.blogspot.com/2010/10/sharepoint-2010-warm-up-script.html
NicolBlog
NicolTIP#023: How to view Sharepoint ULS Log Files with a free tool
Posted
9 months ago
by
Nico LD
0
Comments
SharePoint ULS Log Viewer is a windows application for viewing SharePoint ULS log files more easily. Supports filtering and easy viewing of data. Available on codeplex: http://ulsviewer.codeplex.com/
NicolBlog
NicolTIP#022: How to remove Windows 7 and Windows 2008R2 backup Files…
Posted
10 months ago
by
Nico LD
0
Comments
…created during service pack 1 (SP1) installation via PowerShell. Run Powershell in elevated mode (run as administrator) and type: Dism.exe /online /cleanup-image /spsuperseded You should earn more than 1Gb of disk space.
NicolBlog
Scalable and robust smooth streaming architecture
Posted
10 months ago
by
Nico LD
0
Comments
if you need to wok on this, I think that the following post is a must to have read: http://blogs.iis.net/samzhang/archive/2009/12/16/how-to-build-scalable-and-robust-live-smooth-streaming-server-solutions.aspx
NicolBlog
NicolTIP#021: hot to restart printer spooler service via PowerShell
Posted
over 1 year ago
by
Nico LD
0
Comments
Open your powershell “as administrator” then type: restart-service -Name Spooler -Force
NicolBlog
NicolTIP#020: Why VisualStudio 2010 is not able to connect with my WP7 device? (timeout)
Posted
over 1 year ago
by
Nico LD
0
Comments
Today without any reason VisualStudio was not able to connect with the WP7 device. When I selected “deploy solution” I received the following error: ------ Deploy started: Project: ... Deploying D:\MyProjects2010\... Deployment of application to device...
NicolBlog
NicolTIP#019: How to recursively delete (hidden) SVN Folders in PowerShell 2.0
Posted
over 2 years ago
by
Nico LD
0
Comments
Super easy script from The Pursuite of Life Blog , that I ‘m copying here in order to keep it in my toolbox (get-childitem -recurse -force | where-object { $_.PsIsContainer -eq $true -and $_.Name -eq ".svn" } ) | remove-item –recurse –force
NicolBlog
NicolTIP#018: How use ION acceleration with XBMC 10.0 and Windows 7
Posted
over 2 years ago
by
Nico LD
1
Comments
Starting from version 10.0 XBMC can use hardware acceleration to render video (DXVA 2 support for H.264, VC-1, and WMV9) on Windows 7 too( http://mirrors.xmission.com/xbmc/releases/10.0-Dharma-changelog.txt ). This is very useful if you have, like me...
NicolBlog
NicolTIP#017: How to automate the build process (of WP7 apps and more:) with powershell
Posted
over 2 years ago
by
Nico LD
0
Comments
I developed for fun a couple a WP7 apps and I needed to automate (just a little bit:-) the release process, mainly because: The application version must be entered in various point and should be keep in sync I’d like to store all released version in a...
NicolBlog
NicolTIP#016: How to Set/Reset the revision number in a Word 2010 document
Posted
over 2 years ago
by
Nico LD
1
Comments
When I work for a customer, can happen that I use a document as “template” to build a new one (copy –> paste –> rename –> delete some chapter and start writing). I know that this is not the best way to proceed but, sometimes I find this procedure...
NicolBlog
NicolTIP#015: How to configure a Development Environment website to allow SSL connections on Windows 2008 R2
Posted
over 2 years ago
by
Nico LD
0
Comments
The following steps assume that in your development environment you have a web site configured on Windows 2008 R2, and you want to allow SSL/HTTPS connections to it. On a production environment you will obviously need to purchase a SSL certificate for...
NicolBlog
NicolTIP#014: How to download a Powershell quick reference guide for free:-)
Posted
over 2 years ago
by
Nico LD
1
Comments
If you are starting to use powershell, the sheet you can download from the following link is priceless. Print it and keep it on your desk:-) http://www.microsoft.com/downloads/details.aspx?FamilyId=DF8ED469-9007-401C-85E7-46649A32D0E0
NicolBlog
NicolTIP#013: How to clone a VHD for VirtualBox and avoid “duplicate UUID” error
Posted
over 2 years ago
by
Nico LD
0
Comments
from command line: VBoxManage.exe clonehd source.vhd destination.vhd easy as 1-2-3 :-)
NicolBlog
NicolTIP#012: How to associate a macro to a keyboard shortcut in Visual Studio 2005 and 2008
Posted
over 2 years ago
by
Nico LD
0
Comments
In Visual Studio 2005: In Visual Studio 2008: (Menu –> Tools –> Options)
NicolBlog
NicolTIP#011: Boot Windows Server 2008 R2 from VHD within Windows 7
Posted
over 2 years ago
by
Nico LD
0
Comments
Bare in mind that I already have Windows 7 installed. Physical disk that will hold VHD file must be formatted (does not have to be empty, can not be USB) Boot from Windows Server 2008 R2 DVD When first installation dialog box appears pres SHIFT + F10...
NicolBlog
NicolTIP#010: How to rename and manage file names of your video (and audio?) library with powershell on Windows 7:-)
Posted
over 2 years ago
by
Nico LD
2
Comments
This week end I encoded some my old DVD in wmv file because I’m destroying my old DVD player and I don’t want to buy a blue ray disk (I’m sorry Sony:-). After the encoding arrived the boring time to organize file names, and because now PowerShell is available...
NicolBlog
NicolTIP#009: How to Sysprep a machine with Windows 2003, Windows 2008 / 2008R2, Windows 7
Posted
over 2 years ago
by
Nico LD
1
Comments
I’m writing here because every time I need to set up a bunch of virtual machines, I have to go back and look up where to find the Sysprep tool and how to use it. Windows 2008, Windows 2008 R2, Windows 7: C:\Windows\System32\sysprep\sysprep...
NicolBlog
NicolTIP#008: Windows 7 *God* mode
Posted
over 2 years ago
by
Nico LD
2
Comments
God Mode is a secret Windows 7 Feature (If you can call so!!), which provides you an extended control panel to control your machine. Here are the Steps to invoke the God Mode: Create a new folder (right-click and click on “New Folder”). Right-click on...
NicolBlog
How to remove attachments from outlook (2007) emails easily
Posted
over 3 years ago
by
Nico LD
16
Comments
I receive often emails with big attachment that fill my inbox space very quickly. On the other side, I usually like both to remove these attach and keep the email to preserve the thread for future use. Outlook 2007 don't have this feature so I wrote the...
NicolBlog
NicolTIP#007: What to do when you no longer can run macros in Outlook 2007
Posted
over 3 years ago
by
Nico LD
0
Comments
I am quoting information from [ http://blog.tjitjing.com/index.php/2007/03/things-i-can-and-cannot-get-to-work-in.html] because I tumbled in this issue and forgot to " just " restart Outlook :^) Whenever I went in to Tools - Macro - Macros,...
Page 1 of 3 (72 items)
1
2
3