How to Restart or Shut Down a Remote Computer via Command Line ?

Sometimes I’m not able to use the shutdown or restart function in the Start menu on server.

I found it from stackoverflow and I want to put here. The following functions can help us.

  • shutdown -r — restarts
  • shutdown -s — shutsdown
  • shutdown -l — logoff
  • shutdown -t xx — where xx is number of seconds to wait till shutdown/restart/logoff
  • shutdown -i — gives you a dialog box to fill in what function you want to use
  • shutdown -a — aborts the previous shutdown command
  • shutdown -h — hibernate.

Additional options:

  • -f — force the selected action

For immideatly restart  : 

  • shutdown -t 0 -r -f

Dont forget ! You must have appropriate privileges to shut down the remote machine.

 

More info :

http://stackoverflow.com/questions/162304/how-do-i-shutdown-restart-logoff-windows-via-a-bat-file

https://technet.microsoft.com/en-us/library/cc770416(v=ws.11).aspx

Read More

Event : Microsoft Dynamics 365 Readiness Blitz 5-6 October 2016

Microsoft Event Notification

Microsoft Dynamics 365 takes a new approach to business applications. Our current CRM and ERP cloud solutions will be unified into one cloud service with new purpose-built apps to help manage specific business functions, including: Sales, Field Service, Customer Service, Project Service Automation, Marketing, and Operations. Each app will provide a modern experience and actionable insights delivered from natively embedded Power BI, IoT, and Cortana Intelligence experiences.

Please join us on October 5th or 6th for the Microsoft Dynamics 365 Readiness Blitz. Blitz has both a Technical and a Sales Track running simultaneously and each track is offered twice to give you the opportunity to join. You can preview the agenda on the registration site.

During each event you will have access to subject matter experts from across Microsoft in the areas of product marketing, R&D, support, the partner team, MVPs, and more! Don’t miss the opportunity to get your questions answered.

  • Microsoft Dynamics 365 SALES Blitz for Field and Partner
  • Microsoft Dynamics 365 TECHNICAL Blitz for Field and Partner

REGISTER HERE

Read More

Dynamics CRM Error : Importing Solution – Fields that are not valid were specified for the entity

Fields that are not valid were specified for the entity

When you try to import a solution to another environment if you get an error like this. That error is about field of incompatibility so you must find that incompatibility and delete that field from it there where you want to import

For example :

  • You have a nvarchar field in development environment and have an integer field as same fieldname in test environment.
  • new_age (string)  VS new_age (integer).

 

Read More