in

Community Server

The platform that enables you to build rich, interactive communities

soporte

  • Cómo cambiar la clave de producto de Microsoft Office Professional Plus 2010

     

    Imagine que descargo la versión de Evaluación de 60 días de Microsoft Office Professional Plus 2010 y decide comprar una licencia nueva y desea seguir trabajando con este mismo producto instalado, pues bien tiene la opción de cambiar la clave del producto por la nueva.

    1. Para cambiar la clave del producto de Microsoft Office Professional Plus 2010, haga clic en el botón Inicio , haga clic en Panel de control.
    2. Haga clic en Desinstalar un programa. En la lista de programas instalados, haga clic en Microsoft Office Professional Plus 2010 y, a continuación, haga clic en cambiar.

      En el cuadro de diálogo Microsoft Office Professional Plus 2010, haga clic en la opción de Escribir una clave del producto y, a continuación, haga clic en continuar.

    3. A continuación introduzca la nueva clave en el cuadro de texto y siga el asistente presionando el botón Continuar.

    4. Haga clic en instalar ahora y, a continuación, haga clic en Cerrar cuando aparece un cuadro de diálogo que le informa de que la configuración es correcta.

    **Fuente: http://informaticamicrosoft.wordpress.com/2010/06/06/como-cambiar-la-clave-de-producto-de-microsoft-office-professional-plus-2010/

    Posted ene 26 2012, 11:16 a.m. by szarate with no comments
    Filed under:
  • Configuración inicial para Tarificar llamadas Internas

    /*Debes tener en cuenta antes de ejecutar todo el script, la longitud de las extensiones.*/

     

    USE [Asistel]
    /*Insertas en los  costos base el tipo internas*/
    insert into TblBaseCost values ('Internas')
    go
    /* NOTA:Verificar la longitud de las extensiones.

    Insertas aquí el perfil para tarificación.

    */
    insert into TblPerfil values ('Internas','XXXX','4','4','TblInternas',0,'','','','','','')
    go
    /*NOTA:Verificar la longitud de las extensiones.

    Insertas el tipo de la llamada

    */
    insert into TblCallTypes values ('INT','Llamada Interna','4','4')
    go
    /*Se inserta el costo en cada carrier.*/

    insert into TblCarrierCost values (1,21,0,0)
    go
    insert into TblCarrierCost values (2,21,0,0)
    go
    /*Se inserta la troncal previa que resultara del script.*/

    insert into tblTrunks (trunk_strunk, Trunk_sDescription, Trunk_lPbxId, Trunk_lCarrierId) values ('000INT','Internas',1,0)
    go

    /*Aquí creamos la tabla que manejara los rangos de las extensiones.*/

    /****** Object:  Table [dbo].[TblInternas]    Script Date: 07/23/2010 17:59:45 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    create TABLE [dbo].[TblInternas](
        [Internas_lId] [int] IDENTITY(1,1) NOT NULL,
        [Internas_sNir] [nvarchar](20) NOT NULL,
        [Internas_sPlace] [nvarchar](50) NOT NULL,
        [Internas_sState] [nvarchar](20) NULL,
        [Internas_sCountry] [nvarchar](20) NULL,
        [Internas_lRegionId] [int] NOT NULL,
        [Internas_lBaseCostId] [int] NOT NULL,
        [Internas_lCalltypeId] [int] NOT NULL,
        [Internas_lNumberStart] [bigint] NOT NULL,
        [Internas_lNumberEnd] [bigint] NOT NULL,
    CONSTRAINT [PK_TblInternas] PRIMARY KEY CLUSTERED
    (
        [Internas_lId] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, FILLFACTOR = 90) ON [PRIMARY]
    ) ON [PRIMARY]

    GO

    ALTER TABLE [dbo].[TblInternas]  WITH NOCHECK ADD  CONSTRAINT [FK_TblInternas_TblBaseCost] FOREIGN KEY([Internas_lBaseCostId])
    REFERENCES [dbo].[TblBaseCost] ([BaseCost_lId])
    GO

    ALTER TABLE [dbo].[TblInternas] CHECK CONSTRAINT [FK_TblInternas_TblBaseCost]
    GO

    ALTER TABLE [dbo].[TblInternas]  WITH NOCHECK ADD  CONSTRAINT [FK_TblInternas_TblCallTypes] FOREIGN KEY([Internas_lCalltypeId])
    REFERENCES [dbo].[TblCallTypes] ([CallType_lId])
    GO

    ALTER TABLE [dbo].[TblInternas] CHECK CONSTRAINT [FK_TblInternas_TblCallTypes]
    GO

    ALTER TABLE [dbo].[TblInternas]  WITH NOCHECK ADD  CONSTRAINT [FK_TblInternas_tblRegion] FOREIGN KEY([Internas_lRegionId])
    REFERENCES [dbo].[tblRegion] ([Region_lId])
    GO

    ALTER TABLE [dbo].[TblInternas] CHECK CONSTRAINT [FK_TblInternas_tblRegion]
    GO

    /*Insertamos los rangos de cada serie de extensiones para tarificarlas.*/

    insert into TblInternas values ('1','Llamada Interna','NULL','NULL',0,21,16,'1000','1999')
    insert into TblInternas values ('2','Llamada Interna','NULL','NULL',0,21,16,'2000','2999')
    insert into TblInternas values ('3','Llamada Interna','NULL','NULL',0,21,16,'2000','3999')
    insert into TblInternas values ('4','Llamada Interna','NULL','NULL',0,21,16,'4000','4999')
    insert into TblInternas values ('5','Llamada Interna','NULL','NULL',0,21,16,'5000','5999')
    insert into TblInternas values ('6','Llamada Interna','NULL','NULL',0,21,16,'6000','6999')
    insert into TblInternas values ('7','Llamada Interna','NULL','NULL',0,21,16,'7000','7999')
    insert into TblInternas values ('8','Llamada Interna','NULL','NULL',0,21,16,'8000','8999')
    insert into TblInternas values ('9','Llamada Interna','NULL','NULL',0,21,16,'9000','9999')

  • Pasos Para Una Distribución por conciliación.

    0. Cargar funciones.

    1. Cargar el catalogo de Servicios del carrier (Telmex).

    2. Configurar servicios Telmex como consumo telefónico (script).

    3. Cargar las facturas.

    4. Cargar el inventario de servicios.

    5. importar cuentas y líneas.

    6. Configurar la asociación de cuentas y líneas.

    7. Verificar los tipos de llamadas (validatecalltypes).

    8. Ejecutar la conciliación.

    9. Configurar Métodos de distribución.

    10. Ejecutar la distribución de factura.

    11. Verificar en la intranet.

    12. Para ver la factura que se cargo se debe correr el comando Invoicepreview

  • ERROR AL SINCRONIZAR UN CODIGO DE AUTORIZACION

    1. Que el código sea tipo 0 (cuando sea alcatel podrá ser 0,1 o 2).
    2. Si es alta deberá tener, fecha de alta, mustsinc =1 y el estado= programado.
    3. Si es baja deberá tener, fecha de baja superior a la de alta, mustsinc =1 y el estado= alta.
    4. la llave en el archivo de configuración llamada "sincautcodestime" deberá tener un valor mayor a 0.
    5. Deberá estar dicho conmutador ser algún tipo  diferente de genérico.
    6. Validar el usuario y contraseña.
    7. Validar la IP y el puerto.
    8. Validar la fecha y hora del servidor y del conmutador sean las actualizadas.

  • Campo extensions longitud 10

    En las tablas de tblcalldetails y tblextensions existe actualmente que el campo de la extensión es de nvarchar (10) quedando corto para almacenar los celulares con clave de país con un total de 12 dígitos.

  • Como cerrar sesiones remotamente.

    1. Abre una consola CMD

    2. escribes:  net use \\”ip o nombre del equipo

    3. Te solicitara el nombre de usuario

    4. Después la contraseña

    Una vez hecho estos pasos para firmarte, ahora revisaras que sesiones están firmadas.

    5. escribes: qwinsta /server:”ip o nombre del equipo”

    Esto te mostrara las sesiones abiertas y sus ID

    6. Para cerrar la sesión tecleas: logoff ID /server::”ip o nombre del equipo”

    Donde ID es el id de la sesión a cerrar.

    como cerrar un sesion remota

  • Consultar y reiniciar conexiones de escritorio remoto

    Consulta las sesiones activas al servidor:

    query session /server:servername

    Cerrar una sesión :

    reset session [ID] /server:servername

  • Configuring IIS 6.0, ASP.NET in Windows 2003

    Windows Server 2003 comes with ASP.NET 1.1 and the latest version of Internet Information Server (IIS) version 6.0. IIS 6.0 and ASP.NET 1.1 are designed to integrate seamlessly. By default IIS 6.0 and ASP.NET 1.1 are not enabled. There are two options for enabling IIS in Windows 2003. Option one is to use the Configure Your Server Wizard and Option two is to manually configure it.

    Manually Configuring IIS 6.0 and ASP.NET 1.1

    To manually configure IIS, open "Add or Remove Programs" from the Control Panel. The Control Panel looks like the image below.
    clip_image001

    Click on the ‘Add/Remove Windows Components’ which will open the Windows Components Wizard as shown in the image below.
    clip_image002

    Here, you need to highlight and check ‘Application Server’ and then click the ‘Details…’  button. When you click the details button the Application Server dialog opens and it looks like the image below.
    clip_image003

    Here, you need to check ASP .NET and Internet Information Services and click OK to return to the Windows Component Wizard. Click ‘Next >’ from the Windows Component Wizard to begin installing.
    clip_image004

    When installation is complete you will see the last screen of the Windows Component Wizard.
    clip_image005

    IIS 6.0 and ASP.NET 1.1 are now configured and available.

    Lockdown Mode

    When you choose to install IIS, it starts out in “highly secure” or “lockdown” mode. This means that many of the sophisticated web service features such as Active Server Pages (ASP), ASP.NET, Web Distributed Authoring and Versioning (WebDAV) and server-side includes (SSI) are not functional. In this lockdown mode nothing works and only static content can be served. To be able to use the said features you can individually enable them by following these steps:

    • Open IIS Manager by selecting it from Programs->Administrative Tools->Internet Information Services Manager
    • In the left pane of the IIS Manager expand the node for the web server and click Web Service Extensions
    • In the right pane, you will see a list of web service extensions and the status (Prohibited or Allowed) for each
    • You can right click on the extension name and select Allow to enable it individually
    • If you want to allow all extensions for a specific application, you can select the Allow all Web service extensions for a particular application icon in the Tasks section

    The image below displays IIS Manager and gives you an idea of the process explained above.
    clip_image006

    Source: http://www.startvbdotnet.com/aspsite/editors/iis.aspx

  • RESPALDO Y RESTAURACION LLAMADAS Y CDR UTILIZANDO BCP

    --PASO NUMERO 1 TIEMPO APROXIMADO EN TRAER DICHA INFORMACION 20 MIN.
    /*Instrucciones BCP para extraer los registros de una base de datos a BCP SE REQUIERE VPN EN ESTE PUNTO SOLAMENTE, SE EJECUTAN EN UN CMD*/

    /*Copia a BCP las llamadas del mes a trabajar*/
    bcp "select * from asistel.dbo.tblcalldetails where calldetails_lpbxid=1 and calldetails_scalltype not in ('ent','red') and year(calldetails_tdate)=2009 and month(calldetails_tdate)=4" queryout C:\BCP\LlamadasAbril2009.bcp -n -S10.1.8.215,3731 -Uasistel -PAsistelProd8
    /*Copia a BCP los registros del mes a trabajar*/
    bcp "select * from asistel.dbo.tblcdrpbx where collectors_lcollectorid=1 and year(cdrpbx_ttime)=2009 and month(cdrpbx_ttime)=4" queryout C:\BCP\RegistroAbrilO2009.bcp -n -S10.1.8.215,3731 -Uasistel -PAsistelProd8

    --PASO NUMERO 2
    -- EN LA DB PruebaJAGC REALIZAR LOS SIGUINETES TRUNCATE PARA QUE QUEDEN LIBRES DE INFORMACION
    TRUNCATE TABLE TblCdrPbx2
    TRUNCATE TABLE TblCallDetails2

    -- PASO NUMERO 3

    /*Instrucciones BCP para introcudir en la base de datos desde un BCP, SE EJECUTAN EN UN CMD*/

    bcp PruebaJAGC.dbo.tblcalldetails2 in c:\BCP\Llamadasabril2009.bcp -n -SALFASERVER2 -Usa -Palfacom64
    bcp PruebaJAGC.dbo.tblcdrpbx2 in c:\BCP\Registrosabril2009.bcp -n -SALFASERVER2 -Usa -Palfacom64

    -- PASO NUMERO 4

    /*Copia los insertado por el bcp en una tabla TblCallDetails2 a la tabla  TblCallDetails*/
    BEGIN TRAN
      EXEC('INSERT INTO dbo.TblCallDetails (CallDetails_lEmployeeId, CallDetails_sEmployeeDescription, CallDetails_sExtension, CallDetails_sExtensionDescription, CallDetails_sAutorizationCode, CallDetails_lCompanyId, CallDetails_sCompanyDescription, CallDetails_lOU1Id, CallDetails_sOU1Description, CallDetails_lOU2Id, CallDetails_sOU2Description, CallDetails_lOU3Id, CallDetails_sOU3Description, CallDetails_sDialNumber, CallDetails_sPlace, CallDetails_sState, CallDetails_sCountry, CallDetails_lDurationInMins, CallDetails_lDurationInSecs, CallDetails_sDuration, CallDetails_dCost, CallDetails_sTrunk, CallDetails_tDate, CallDetails_sCallType, CallDetails_lRemoteId, CallDetails_bRevEmployee, CallDetails_bRevSupervisor, CallDetails_lPbxId, CallDetails_lCallStatus, CallDetails_lOwnerId, CallDetails_sOwnerDescription, CallDetails_sComment, CallDetails_lSupervisorId, CallDetails_tAuditDate, CallDetails_bOwnerType, CallDetails_bValid)
      SELECT  CallDetails_lEmployeeId, CallDetails_sEmployeeDescription, CallDetails_sExtension, CallDetails_sExtensionDescription, CallDetails_sAutorizationCode, CallDetails_lCompanyId, CallDetails_sCompanyDescription, CallDetails_lOU1Id, CallDetails_sOU1Description, CallDetails_lOU2Id, CallDetails_sOU2Description, CallDetails_lOU3Id, CallDetails_sOU3Description, CallDetails_sDialNumber, CallDetails_sPlace, CallDetails_sState, CallDetails_sCountry, CallDetails_lDurationInMins, CallDetails_lDurationInSecs, CallDetails_sDuration, CallDetails_dCost, CallDetails_sTrunk, CallDetails_tDate, CallDetails_sCallType, CONVERT(bigint, CallDetails_lRemoteId), CallDetails_bRevEmployee, CallDetails_bRevSupervisor, CallDetails_lPbxId, CallDetails_lCallStatus, CallDetails_lOwnerId, CallDetails_sOwnerDescription, CallDetails_sComment, CallDetails_lSupervisorId, CallDetails_tAuditDate, CallDetails_bOwnerType, CallDetails_bValid FROM dbo.TblCallDetails2')
    commit
    -- TIEMPO APROXIMADO CON 66,344 LLAMADAS 55 SEGS.
    /*Copia los insertado por el bcp en una tabla TblCdrPbx2 a la tabla  TblCdrPbx*/
    BEGIN TRAN
     EXEC('INSERT INTO dbo.TblCdrPbx ( CdrPbx_lRemoteId, CdrPbx_sRegister, Collectors_lCollectorID, CdrPbx_tTime, CdrPbx_bIsProcessed, CdrPbx_bReaded,CdrPbx_tDateReaded)
      SELECT  CONVERT(bigint, CdrPbx_lRemoteId), CdrPbx_sRegister, Collectors_lCollectorID, CdrPbx_tTime, CdrPbx_bIsProcessed, CdrPbx_bReaded, CASE WHEN CdrPbx_bReaded=1 THEN CdrPbx_tTime ELSE convert(datetime,''01/01/1900 00:00:00'',103 ) END FROM dbo.TblCdrPbx2')
    commit
    -- TIEMPO APROXIMADO CON    210,368  REGISTROS 26 SEGS.

     

Powered by Community Server (Non-Commercial Edition), by Telligent Systems