Entradas

Install SharePoint 2010 Server Farm Setup without Active Directory on Windows Server 2008

Imagen
How to install SharePoint 2010 Server Farm Setup without Active Directory on Windows Server 2008? In SharePoint 2010, there are two types of installations: Farm  and Standalone. If you want to install SP 2010 on a single machine, it will not allow you to install farm set up out of the box as by default it requires Active Directory which means your machine needs to join a domain where Microsoft Active Directory has been already setup. To workaround this problem for Windows Server 2008 machine, you could do the following: 1. Install SQL Server 2008 R2 Development/Enterprise edition. 2.  Install SharePoint 2010 Installation using Farm Setup. 3. Before proceeding to launch the SP2010 Configuration Wizard, open the SP2010 PowerShell and run this command: New-SPConfigurationDatabase After that, you will get the following window: Enter a Database Name (i.e SharePoint_Config_Db) Next: Enter a Database Server: (Your Database server name, if the database is h...

Adding an Auto-Refresh Content Editor Web Part in Sharepoint

Imagen
Written by MMMan . The Challenge You want to create a dashboard which will automatically refresh itself on a regular basis The Solution This is easily accomplishable using a SharePoint Web Part and little bit of scripting, JavaScript in this case, to be precise. How to Accomplish This Task Start by going to the page you want to edit, and begin editing the page (you will obviously have to have rights to do this). Add a Web Part to your page (you should already be in a mode like below). Choose the “Media and Content” Category, “Content Editor” Web Part, and add it to any part of the page (such as the “Header”). Select the web part and choose “Edit Web Part” from the drop down. A menu will appear on the top right hand side of the page, you may need to scroll over/up to find it. Set the Title to “Refresh the Web Page”. Set the Chrome Type to “None”. ...

OpenProj error “Your Java vendor is Oracle Corporation”

Imagen
Oracle es java (ya deja de ser libre) y que tenemos una actualización de java que es la versión 7 y con ello muchos problemas con las aplicaciones de licencia libre que usaban java. “Your Java vendor is “Oracle Corporation”. To run OpenProj, you need the Sun Java implementation. The auto-detected Java Runtime used is…” Para hacerlo funcionar básicamente hay que engañar a openproj desde su archivo de configuración diciéndole que efectivamente es java el proveedor.. entonces solo es necesario modificar la línea JAVA_OPTS en el archivo /home/user/.openproj/run.conf   JAVA_OPTS="-Xms128m -Xmx768m" y reemplazarla por esta otra   JAVA_OPTS="-Djava.vendor=Sun -Xms128m -Xmx768m" Y listo y como recomendación, por favor no hagan el cambio teniendo el mensaje de error abierto, ya que no surtirá efecto.

Installing Failover Clustering With Windows Server 2008 R2

Imagen
Creating a failover clustering means you have at least two servers connected to a shared storage.  Failover Clustering System Requirement: Windows Server 2008/R2   :  Failover Clustering feature is available with Windows Server 2008/R2 Enterprise/Data Center editions. You don't have this feature with the Standard edition of Windows Server 2008/R2. Domain role:  All servers in the cluster must be in the same Active Directory domain. DNS:  The servers in the cluster must be using Domain Name System (DNS) for name resolution. Account for administering the cluster :  When you create a cluster or add servers to it, you must be logged on to the domain with an account that has administrator rights on all servers in that cluster ( if the account is not a Domain Admins account, the account must be given the Create Computer Objects and Read All Properties permissions in the domain ). Servers :  Two identical servers in brand, model and configu...

DELL Server: How To Create RAID Using PERC H700 Integrated BIOS Configuration Utility

Imagen
This article explains how to create a new Virtual Disk in both RAID 0 a d RAID 1 configuration using PERC H700 Integrated BIOS Configuration Utility, based on the new hard disks you just inserted into the DELL servers. All the new DELL PowerEdge Servers (for example, Dell PowerEdge R610, Dell PowerEdge R710, etc.) comes with PERC H700 utility to manage the server’s hardware RAID controller. 1. Launch PERC H700 Integrated BIOS Configuration Utility Insert all new disks into the empty slots. If there are already disks on slot 0 and slot 1, start inserting the new disks from slot 2. In this example, the new 4 disks are inserted from slot-2 to slot-5. In this example, my intention is to create a new RAID-0 with the disks that were inserted in slot 2 and 3, and a new RAID-1 with the disks that were inserted in slot 4 and 5. After the disks are inserted, reboot the server. When the server is starting up, press Ctrl-R to launch the PowerEdge Expandable RAID Controller BIOS. Pres...

How to Configure a Global Group to Be a Member of the Administrators Group on all Workstations

Imagen
When defining the membership of a group is not the desired change, the Restricted Groups Member of function can be used. This is a less-invasive method of updating or modifying group membership using domain policies. As an example, if an organization wants to add the COMPANYABC\IT domain security group to the local Administrators group of all computers in the HQ Workstations organizational unit, the following process can be followed: 1. Create an OU called HQ Workstations and place all the necessary computer accounts into the OU. 2. Create a new domain group policy called HQWorkstationsRestrictedGroupGPO and open it for editing. 3. Click the Computer Configuration node, expand Policies, expand Windows Settings, expand Security Settings, and then select Restricted Groups. Add a group but do not specify the Administrators group; instead, specify the COMPANYABC\IT group. 4. In the properties of the COMPANYABC\IT restricted group, click the Add ...

SharePoint 2010 Infopath Print Button

Imagen
thanks to http://arcemise.wordpress.com/2011/02/04/sharepoint-2010-infopath-print-button/ SharePoint 2010 Infopath Print Button I received a request to put a print button within a List Item display view so that one could easily print the current item they’re viewing.  After searching for a way to put a print button within the Infopath form itself (and coming up empty), I figured out how to simply add it to the page that displays the form. The end goal Once you have your Infopath form put together and published to a List, go to the List page. 1. Click on the “List” tab under List Tools 2. Click on the drop down arrow on the “Modify Form Webparts” button (pictured) 3. Select “(Item) Display Form” 4. This will take you to an edit page screen with your Infopath form set as a webpart 5. Add a “Content Editor Webpart” to the page 6. Edit your new webpart’s source and paste in the following: 1 2 <input type= "button" value= " Pr...