Standards for the Data Center setup

    Standards for the Data Center setup   Setting up a data center involves adhering to various standards and best practices to ensure reliability, security, and efficiency. Here are some key standards and considerations for data center setup: TIA-942 Telecommunications Infrastructure Standard for Data Centers: This standard from the Telecommunications Industry Association provides guidelines […]

Components of Private Cloud Infrastructure

  Components of Private Cloud (Data Center) Infrastructure   In the ever-evolving landscape of technology, private clouds have emerged as a crucial infrastructure solution for organizations seeking enhanced control, security, and flexibility in their data management strategies. At the core of a private cloud architecture lies the robust foundation of virtualization, enabling the efficient allocation [...]

ServiceNow workflow – A sample Script to update all the catalog tasks with work notes

The following code can be used in the run script activity of the workflow to update the work notes or any other fields of all the catalog tasks [Conditionally we can update the catalog tasks as well] var catalogTaskGR = new GlideRecord(‘sc_task’); catalogTaskGR.addQuery(‘request_item’, current.sys_id); catalogTaskGR.query(); while(catalogTaskGR.next()) { catalogTaskGR.work_notes = “The ServiceDesk team has started working […]