If you connect to a diferent network using a VPN, you want to make the shortcuts on you explorer and authenticate user in Active Directory, to access that you have to write this lines on you command prompt:
net use \\[server name ex: server.companyname.local]\ipc$ /user:[Username] [Password]
This line will authenticate you on the network you connect in the VPN....
(Office 365 Tips and Tricks. We definitely don't know everything...)
Sunday, October 28, 2007
Monday, October 22, 2007
Create CRM Microsoft Callout in Visual Studio 2005
Normaly when you read forums and the SDK book to create callout they recomend Visual studio 2003, why? Very simple, because they need framework 1.1, but Arash Ghanaie-Sichanie create a template in visual studio that you can create your callout in visual studio 2005
Here
you have to download framework 1.1 from that you cannot scape, this template is very very useful, because dont need to install 2 visual studios....
Here
you have to download framework 1.1 from that you cannot scape, this template is very very useful, because dont need to install 2 visual studios....
Saturday, October 20, 2007
Project Gant List in Sharepoint services wss 3.0
Hello Again, with introdution about almost a year i have being exploring, i see a lot of diference with wss 2.0 on that realy like because we can use to show customers and internal project is the "project list library", if administration want to control how is the develomp of product in real time, can use this web part library and create alert when some project have finish.
This control is very good but have a lots of limitations if you normaly work with office project, but is a good way to start and if you are a litle company, you can use the imagination to do a lot of things, and dont need to buy office microsoft project or microsoft project server... :P
Friday, October 19, 2007
Parameter reporting services 2005 URL and export PDF
Acessing reports services 2005 using url with parameters can be tricky sometimes because we have to construct the URL to the page with the parameters we want, my advice is to make step by step,
"http://[server]/reportserver?MyReport&rs:Command=Render&rc:Toolbar=false&
rs:ClearSession=true&type=1&typename=account&id={E8F20C3B-0F40-DC11-90E5-001560A50A1D}"
Ok what i did here
i call the reports and use some parameter to make the filter with the name:
id
type
typename
this fields will be defined in the report by @ "where [field]=@id and [field]=@type and [field]=@typename
@id
@type
@typename
and if you want to export directly to a PDF file you will need to add the tag in the url
&rs:Format=PDF
Ok is done easy and fast way to export reports to pdf, and you dont need to preeview report...
"http://[server]/reportserver?MyReport&rs:Command=Render&rc:Toolbar=false&
rs:ClearSession=true&type=1&typename=account&id={E8F20C3B-0F40-DC11-90E5-001560A50A1D}"
Ok what i did here
i call the reports and use some parameter to make the filter with the name:
id
type
typename
this fields will be defined in the report by @ "where [field]=@id and [field]=@type and [field]=@typename
@id
@type
@typename
and if you want to export directly to a PDF file you will need to add the tag in the url
&rs:Format=PDF
Ok is done easy and fast way to export reports to pdf, and you dont need to preeview report...
Tuesday, October 16, 2007
Create Task Scheduler Backup sharepoint Wss 3.0
One way to create a Task Scheduler on sharepoint Wss 3.0 is create a bat file and use the "Microsoft Scheduled Tasks" there you select the bat file and select the days or days that the service run, easy and fast...
"start"->"control Panel"->"Scheduled Tasks"->add task
create .bat file and associate the time
path C:\Program Files\common files\Microsoft shared\web server extensions\12\bin\
Stsadm.exe" -o backup -directory \\server\share -backupmethod full -overwrite
Microsoft have create a diferent scrip that delete older files a litle more complex but can be the way you want
How to automate the deletion of backups in SharePoint Server 2007 and in Windows SharePoint Services 3.0 by using a Visual Basic script
You can also manually delete backups. However, manually deleting backups does not clean the manifest file (Spbrtoc.xml) correctly.
the page i was base on http://www.iopus.com/guides/winscheduler.htm
"start"->"control Panel"->"Scheduled Tasks"->add task
create .bat file and associate the time
path C:\Program Files\common files\Microsoft shared\web server extensions\12\bin\
Stsadm.exe" -o backup -directory \\server\share -backupmethod full -overwrite
Microsoft have create a diferent scrip that delete older files a litle more complex but can be the way you want
How to automate the deletion of backups in SharePoint Server 2007 and in Windows SharePoint Services 3.0 by using a Visual Basic script
You can also manually delete backups. However, manually deleting backups does not clean the manifest file (Spbrtoc.xml) correctly.
the page i was base on http://www.iopus.com/guides/winscheduler.htm
Clean up backup files (Windows SharePoint Services 3.0)
http://technet.microsoft.com/en-us/library/cc967308.aspx
Wednesday, October 10, 2007
Show Shared Exchange Calendar CRM Microsoft
One time a college ask me if he can see calendars of his boss and colleges in APR, i say yes of course, go in the outlook, then folder of exchange and then find the shared calendar, ok after almost 2 minutes she found the calendar and ask me, "what i do when i am in the phone..." well i understand his problem then in the phone call i create a popup page in html that make outlook view in html page, sow i did this in the html page:
Of course this is a litle example, i create litle more complex with 2 calendars and a lists of shared calendar paths that change with vbscript.
here my original post:
http://www.microsoft.com/dynamics/crm/using/usertips/tips.mspx
<--object classid="clsid:0006F063-0000-0000-C000-000000000046" id="OVCWPQ1" width="100%" height="485px" param name="Folder" value=[Folder to shared calendar in exchange] /-->
< param name="Namespace" value="MAPI" />
<--/object-->
Of course this is a litle example, i create litle more complex with 2 calendars and a lists of shared calendar paths that change with vbscript.
here my original post:
http://www.microsoft.com/dynamics/crm/using/usertips/tips.mspx
Create Callout CRM 3.0 fast refresh
You can use Visual Studio 2005 to create callout, but you will need to have installed the framework 1.1, here a site where explains.
Site
Now in then Prebuild and Postbuild og the project you can put this lines, this line will only refesh the IIS faster, and you dont have to stop services and restart, fast and easy....
Prebuild
cscript C:\Inetpub\AdminScripts\adsutil.vbs stop_server W3svc/AppPools/CRMAppPool
cscript C:\Inetpub\AdminScripts\adsutil.vbs start_server W3svc/AppPools/CRMAppPool
Postbuild
xcopy "$(TargetPath)" "C:\Program Files\Microsoft CRM\Server\bin\assembly" /y
Site
Now in then Prebuild and Postbuild og the project you can put this lines, this line will only refesh the IIS faster, and you dont have to stop services and restart, fast and easy....
Prebuild
cscript C:\Inetpub\AdminScripts\adsutil.vbs stop_server W3svc/AppPools/CRMAppPool
cscript C:\Inetpub\AdminScripts\adsutil.vbs start_server W3svc/AppPools/CRMAppPool
Postbuild
xcopy "$(TargetPath)" "C:\Program Files\Microsoft CRM\Server\bin\assembly" /y
Subscribe to:
Posts (Atom)