Skip to main content

blog

Go Search
Sharepoint
blog
Wiki
  

Categories
Moss
Security
ISA
CRM
Other Blogs
There are no items in this list.
Sharepoint > blog
WinRM and WinRS examples
winrm
 
winrm quickconfig (without /)
 
winrm delete winrm/config/listener IPAdress=*+Transport=HTTP
 
winrm enumerate wmicimv2/win32_logicaldisk –remote:sea-dc-01

winrs (remote shell)
winrs -r:http://localhost "dir c:"
 
winrs -r:http://sea-dc-01 "ver"
 
winrs –remote:sea-dc-01 ipconfig /all
Important MetaTags for Google
These are the MetaTags I uses for www.fysiosmits.nl and www.nzrloonadministratie.nl
 
<meta name="keywords" content="fysiotherapie,oud-beijerland,beijerland,fysiotherapeut,manuele therapie,manueel therapeut,oud-beijerland,nobelstraat,fysiotherapeut,manuele therapie,boogerd">
<meta name="description" content="De site van de Praktijk voor fysiotherapie en manuele therapie Martine Smits Oud-Beijerland">
<META NAME="robot" CONTENT="index,follow">
<META NAME="copyright" CONTENT="4knowledge">
<META NAME="author" CONTENT="Martine Smits">
<META NAME="language" CONTENT="Nederlands">
<META NAME="revisit-after" CONTENT="7">
How to Enroll Smartcards in Windows Vista

Just a few printscreens but it may help!

 

 

 

 

 

 

 

 

 

 

How to change the port number of a SharePoint WebApplication.

How to change the port number of a SharePoint WebApplication.

This site (my SSP1 site) is running on port number 13224 and I want to change it to port number 2001.

 

 

The old port number.

The old Alternate Access Mappings.

 

Change it to the new port number.

 

 

 

In IIS also change it to the new Port Number.

 

 

It works. J

 

 

Arthur Goudswaard

Create a SharePoint SubSite or SubWeb via Meetings.asmx (Sharepoint WebServices)
To create a SubSite you can the meetings.asmx webservice. It can also be used to create Team Sites via using the Team Site Template name (STS#0) instead of a Meeting Site Template.
 
Connect to the SharePoint meetings webservice via
 
/_vti_bin/meetings.asmx on the site where you want to create a SubSite.
 
Add a Web Reference to this URL, name it WSSsdk and use the following code:
 
WSSsdk.Meetings meetobj = new WSSsdk.Meetings();
            WSSsdk.TimeZoneInf tz = new WSSsdk.TimeZoneInf();
            meetobj.Credentials = System.Net.CredentialCache.DefaultCredentials;
            meetobj.Url="http://companyweb/_vti_bin/meetings.asmx";
 
            meetobj.CreateWorkspace("demoSubsite","STS#0",1033,tz);
 
I am not a developer and this is just a simple demo which works on my machine.
Have Fun :-)
 
 
 
Create Site Collection via Admin.asmx (Sharepoint WebServices)
To create a Site Collection via SharePoint Webservices use admin.asmx whick can be found on the Administration Site.
 
/_vti_adm/admin.asmx
 
Add a Web Reference to the URL name it WSSsdk and use the following example code:
 
 WSSsdk.Admin admService = new WSSsdk.Admin();
            admService.Credentials = System.Net.CredentialCache.DefaultCredentials;
            try
            {
                admService.CreateSite("http://companyweb/sites/firstsite",
                    "First Site", "Van Arthur", 1033, "STS#0",
                    "advworks\\Crmadmin", "Crm Admin",
                    "crmadmin@advworks.msft", "", "");
            }
            catch (System.Web.Services.Protocols.SoapException ex)
            {
                MessageBox.Show("Message:\n" + ex.Message + "\nDetail:\n" +
                    ex.Detail.InnerText +
                    "\nStackTrace:\n" + ex.StackTrace);
            }
 
It is not possible to create a SubSite with this webservice. For creating Subsites/SubWebs use the meetings.asmx which can be found on the website under which you want to create a SubSite.
Using an existing WSS / MOSS database in a new installation
When trying to use an existing database in a new installation via creating an new webapplication an pointing to the existing database or via the content database options on the admin site you can get an error if the Sharepoint database account has no permissions on the database. Check the username of the Sharepoint database account for example in de Admin Site Applicaton Pool. Use this account in in SQL server by pointing to the database add the user with dbo permissions to the database. The user is already a login because MOSS is using this account already. This should work :-)
 
 
 
CRM Rule Deployment Wizard (Deploy disabled rules)
The option Deploy disabled rules on the forward e-mail address page, means that the rule is deployed to the user mailboxes selected later on in the wizard, but the rule is not activated. The user has to activate the rule by selecting the checkbox in Outlook.
 
 
 
 

 ‭(Hidden)‬ Admin Links

© 2008 Arthur Goudswaard ;-) version 1