diff --git a/wscacicneo/__init__.py b/wscacicneo/__init__.py
index 25b1c5c..24e9000 100755
--- a/wscacicneo/__init__.py
+++ b/wscacicneo/__init__.py
@@ -23,26 +23,27 @@ def main(global_config, **settings):
cfg.include('pyramid_chameleon')
cfg.add_static_view('static', 'static', cache_max_age=3600)
+
+ # Rotas de Configuração
cfg.add_route('master', 'master')
cfg.add_route('blankmaster', 'blankmaster')
cfg.add_route('root', '/')
+ # Rotas Básicas
cfg.add_route('home', 'home')
cfg.add_route('error', 'error')
- cfg.add_route('graficop', 'graficop')
cfg.add_route('notifications', 'notifications')
- cfg.add_route('admin', 'admin')
- cfg.add_route('proc', 'proc')
- cfg.add_route('sistema', 'sistema')
- cfg
cfg.add_route('orgao', 'orgao/cadastro')
+
+ # Orgãos
cfg.add_route('post_orgao', 'post_orgao')
cfg.add_route('put_orgao', 'put_orgao')
cfg.add_route('editorgao', 'orgao/editar/{sigla}')
cfg.add_route('listorgao', 'orgao/lista')
cfg.add_route('delete_orgao', 'orgao/delete/{sigla}')
cfg.add_route('base_de_dados', 'orgao/base/{sigla}')
- #
+
+ # Users
cfg.add_route('user', 'usuario/cadastro')
cfg.add_route('post_user', 'post_user')
cfg.add_route('put_user', 'put_user')
@@ -54,40 +55,21 @@ def main(global_config, **settings):
cfg.add_route('notify', 'notificacoes/cadastro')
cfg.add_route('post_notify', 'post_notify')
cfg.add_route('list_notify', 'notificacoes/lista')
- # base orgaos
+
+ # Base de Rerpot por Orgãos
cfg.add_route('create_orgao', 'create/orgao/{nm_orgao}')
- # relatorios
+
+ # Relatórios
cfg.add_route('conf_report', 'relatorios/configuracao')
cfg.add_route('report_itens', 'relatorio/{nm_orgao}/{attr}/{child}')
+
# Coleta Manual
cfg.add_route('cadastro_coleta', 'coleta/cadastro')
cfg.add_route('post_coleta_manual', 'post_coleta_manual')
- #
- cfg.add_route('list', 'list')
- cfg.add_route('gestao', 'gestao')
- cfg.add_route('memoria', 'memoria')
- cfg.add_route('basico', 'basico')
- cfg.add_route('rede', 'rede')
- cfg.add_route('escritorio', 'escritorio')
- cfg.add_route('hd', 'hd')
- cfg.add_route('config', 'config')
- cfg.add_route('bot', 'bot')
+
+ # Autenticação
cfg.add_route('login', 'login')
- cfg.add_route('loginautentication', 'loginautentication')
cfg.add_route('logout', 'logout')
- cfg.add_route('computador', 'computador')
- cfg.add_route('busca', 'busca')
- cfg.add_route('gestor', 'gestor')
- cfg.add_route('diagnostic', 'diagnostic')
- cfg.add_route('cadastro', 'cadastro')
- cfg.add_route('sobre', 'sobre')
- cfg.add_route('perfil', 'perfil')
- cfg.add_route('configapi','configapi')
- cfg.add_route('processador','processador')
- cfg.add_route('configcoleta','configcoleta')
- cfg.add_route('configfav','configfav')
- cfg.add_route('questionarcoleta','questionarcoleta')
- cfg.add_route('confighome','confighome')
- cfg.add_route('db','db')
+
cfg.scan()
return cfg.make_wsgi_app()
diff --git a/wscacicneo/model/coleta_manual.py b/wscacicneo/model/coleta_manual.py
index bcbbf0a..48548b2 100644
--- a/wscacicneo/model/coleta_manual.py
+++ b/wscacicneo/model/coleta_manual.py
@@ -202,6 +202,7 @@ class ColetaManualBase():
)
content_list = Content()
+ content_list.append(data_coleta)
content_list.append(Win32_Processor)
content_list.append(OperatingSystem)
content_list.append(Win32_BIOS)
diff --git a/wscacicneo/model/orgao.py b/wscacicneo/model/orgao.py
index 8e36f1e..9bb08ff 100755
--- a/wscacicneo/model/orgao.py
+++ b/wscacicneo/model/orgao.py
@@ -148,7 +148,6 @@ class OrgaoBase():
Cria base no LB
"""
response = self.baserest.create(self.lbbase)
- #print(response.status_code)
if response.status_code == 200:
return self.lbbase
else:
diff --git a/wscacicneo/model/reports.py b/wscacicneo/model/reports.py
index 7a03683..7874532 100644
--- a/wscacicneo/model/reports.py
+++ b/wscacicneo/model/reports.py
@@ -27,7 +27,6 @@ class Reports():
self.rest_url = rest_url
self.coleta_manual_base = coleta_manual.ColetaManualBase(nm_base, self.rest_url)
self.base = self.coleta_manual_base.lbbase
- print(type(self.base))
self.documentrest = DocumentREST(self.rest_url, self.base, response_object=True)
@@ -64,15 +63,10 @@ class Reports():
"""
Insere dados de coleta
"""
- document = self.coleta_to_json()
- try:
- coleta = self.documentrest.create(document)
- except HTTPError as err:
- log.error(err.strerror)
- return None
-
- return coleta
+ result = self.documentrest.create(document)
+ return result
+
def update_coleta(self,id, document):
"""
Altera dados de coleta
@@ -116,7 +110,6 @@ class Reports():
for elm in results:
if child:
parent = getattr(elm, attr)
- print(parent)
attribute = getattr(parent, child)
else:
attribute = getattr(elm, attr)
diff --git a/wscacicneo/static/WMI.css b/wscacicneo/static/WMI.css
deleted file mode 100755
index 099909f..0000000
--- a/wscacicneo/static/WMI.css
+++ /dev/null
@@ -1,4 +0,0 @@
-#group-table
-{
- width: 120px;
-}
\ No newline at end of file
diff --git a/wscacicneo/static/WMI.js b/wscacicneo/static/WMI.js
deleted file mode 100755
index 8b0e209..0000000
--- a/wscacicneo/static/WMI.js
+++ /dev/null
@@ -1,118 +0,0 @@
-var regAllContent = document.getElementById('wmi-content').innerText,
- regReplace = regAllContent.replace(/'/gi, '"'),
- regObjectJson = JSON.parse(regReplace);
- regObjectJson = {"reg": regObjectJson},
- x = new Array(),
- counter = 0,
- regAberto = '';
-
-$.each(regObjectJson.reg, function(k, v){
- if (k != "id_reg"){
- //aplica os nomes dos grupos na tabela GRUPOS
- // x.push({text: k, handler: function(e){
- //verifica o contador
- // if (counter <= 3){
- x.push({"base_name": k});
- fields = new Array();
- columns = new Array();
- //aplica as respectivas strings no array (colocar grid e store)
- $.each(v[0], function(key, value){
- data = v[0];
- fields.push(key);
- columns.push({text: key, flex: 1, minWidth: 108, dataIndex: key});
- });
- // doTable(data, fields, columns);
- //}else{
- // alert('É permitido abrir apenas 4 tabelas simultaneamente');
- // }
- // }});
- }
-});
-
-$.each(regObjectJson.reg, function(k, v){
-});
-
-function doCombobox(x, data, fields, columns){
- //tabelas ExtJS
-
- // var mainMenu = Ext.create('Ext.menu.Menu', {
- // width: 190,
- // renderTo: 'group-table',
- // floating: false,
- // collapsible: true,
- // border: true,
- // frame: true,
- // title: 'Home',
- // titleAlign: 'center',
- // items: x
- // });
-
- var states = Ext.create('Ext.data.Store', {
- fields: ['base_name'],
- data : x
- // {"abbr":"AL", "name":"Alabama"},
- // {"abbr":"AK", "name":"Alaska"},
- // {"abbr":"AZ", "name":"Arizona"}
-
- });
-
- // Create the combo box, attached to the states data store
- Ext.create('Ext.form.ComboBox', {
- listeners: {
- 'select': function(){
- if (counter < 7){
- doTable(data, fields, columns);
- counter++;
- }else{
- alert('Só é permitido abrir 7 bases simultaneamente!')
- }
- }
- },
- fieldLabel: 'Escolha a Base',
- store: states,
- queryMode: 'local',
- displayField: 'base_name',
- // valueField: 'base_name',
- renderTo: 'group-table'
- });
-}
-
-doCombobox(x, data, fields, columns);
-
-function doTable(data, fields, columns){
- Ext.require([
- 'Ext.data.*',
- 'Ext.grid.*'
- ]);
-
- Ext.onReady(function(){
- var store2 = Ext.create('Ext.data.Store', {
- autoLoad: true,
- data: data,
- fields: fields,
- proxy: {
- type: 'memory',
- reader: {
- type: 'json',
- }
- }
- });
-
-
-
- var panel = Ext.create('Ext.grid.Panel', {
- forceFit: false,
- closable: true,
- listeners: {
- close: function(e){
- counter--;
- }
- },
- store: store2,
- columns: columns,
- renderTo:'reg-table',
- width: 750,
- height: 85
- });
- });
-}
diff --git a/wscacicneo/static/caciclogo.jpg b/wscacicneo/static/caciclogo.jpg
deleted file mode 100755
index 1e2a3c1..0000000
Binary files a/wscacicneo/static/caciclogo.jpg and /dev/null differ
diff --git a/wscacicneo/static/footerbg.png b/wscacicneo/static/footerbg.png
deleted file mode 100755
index 1fbc873..0000000
Binary files a/wscacicneo/static/footerbg.png and /dev/null differ
diff --git a/wscacicneo/static/headerbg.png b/wscacicneo/static/headerbg.png
deleted file mode 100755
index 0596f20..0000000
Binary files a/wscacicneo/static/headerbg.png and /dev/null differ
diff --git a/wscacicneo/static/icons/ajuda.png b/wscacicneo/static/icons/ajuda.png
deleted file mode 100755
index 00a281c..0000000
Binary files a/wscacicneo/static/icons/ajuda.png and /dev/null differ
diff --git a/wscacicneo/static/icons/busca.png b/wscacicneo/static/icons/busca.png
deleted file mode 100755
index ad696c8..0000000
Binary files a/wscacicneo/static/icons/busca.png and /dev/null differ
diff --git a/wscacicneo/static/icons/delete.png b/wscacicneo/static/icons/delete.png
deleted file mode 100755
index 5b39f7c..0000000
Binary files a/wscacicneo/static/icons/delete.png and /dev/null differ
diff --git a/wscacicneo/static/icons/downloads.png b/wscacicneo/static/icons/downloads.png
deleted file mode 100755
index 29bfa2f..0000000
Binary files a/wscacicneo/static/icons/downloads.png and /dev/null differ
diff --git a/wscacicneo/static/icons/edit.png b/wscacicneo/static/icons/edit.png
deleted file mode 100755
index 0b90792..0000000
Binary files a/wscacicneo/static/icons/edit.png and /dev/null differ
diff --git a/wscacicneo/static/icons/estatisticas.png b/wscacicneo/static/icons/estatisticas.png
deleted file mode 100755
index 1160405..0000000
Binary files a/wscacicneo/static/icons/estatisticas.png and /dev/null differ
diff --git a/wscacicneo/static/icons/exportar-pdf.png b/wscacicneo/static/icons/exportar-pdf.png
deleted file mode 100755
index 62bcc3f..0000000
Binary files a/wscacicneo/static/icons/exportar-pdf.png and /dev/null differ
diff --git a/wscacicneo/static/icons/ferramentas.png b/wscacicneo/static/icons/ferramentas.png
deleted file mode 100755
index 40a482f..0000000
Binary files a/wscacicneo/static/icons/ferramentas.png and /dev/null differ
diff --git a/wscacicneo/static/icons/mensagens.png b/wscacicneo/static/icons/mensagens.png
deleted file mode 100755
index 3576f4e..0000000
Binary files a/wscacicneo/static/icons/mensagens.png and /dev/null differ
diff --git a/wscacicneo/static/icons/relatorios.png b/wscacicneo/static/icons/relatorios.png
deleted file mode 100755
index c5045bf..0000000
Binary files a/wscacicneo/static/icons/relatorios.png and /dev/null differ
diff --git a/wscacicneo/static/icons/usuario.png b/wscacicneo/static/icons/usuario.png
deleted file mode 100755
index 54379de..0000000
Binary files a/wscacicneo/static/icons/usuario.png and /dev/null differ
diff --git a/wscacicneo/static/js/admin.js b/wscacicneo/static/js/admin.js
deleted file mode 100755
index d5c28b4..0000000
--- a/wscacicneo/static/js/admin.js
+++ /dev/null
@@ -1,82 +0,0 @@
-var painelContent=
- Ext.create('Ext.tree.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- root: {
- text: 'Administração',
- expanded: true,
- children: [
- {
- text: 'Administração de Órgãos',
- expanded: true,
- children: [
- {
- text: 'Cadastrar Órgão',
- leaf: true
- },
- {
- text: 'Configuração do Bot',
- leaf: true
- },
- {
- text: 'Lista de Órgãos',
- leaf: true
- },
- ]
- },
- {
- text: 'Administração de Usuário',
- expanded: true,
- children: [
- {
- text: 'Cadastro de Usuário',
- leaf: true
- },
- {
- text: 'Lista de Usuários',
- leaf: true
- },
- ]
- },
- {
- text: 'Configurções do sistema',
- expanded: true,
- children: [
- {
- text: 'Configurações das Bases de dados',
- leaf: true
- },
- {
- text: 'Confirgurações da aplicação',
- leaf: true
- },
- ]
- },
-
- ]
- }
- });
-
-admin = Ext.create('Ext.panel.Panel', {
- title: 'Painel de Administração',
- width: '75%',
- frame: true,
- layout: 'fit',
- collapsible: true,
- draggable: true,
- border : true,
- style: {
- margin: '0px auto 15px auto'
- },
- items: painelContent
- });
-
-Ext.onReady(function(){
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [admin],
- renderTo: 'widgets'
- });
-
-});
diff --git a/wscacicneo/static/js/ajaxurl.js b/wscacicneo/static/js/ajaxurl.js
deleted file mode 100755
index 77b567e..0000000
--- a/wscacicneo/static/js/ajaxurl.js
+++ /dev/null
@@ -1,16 +0,0 @@
-function crossDomainPost() {
- // Add the iframe with a unique name
- var iframe = document.createElement("iframe");
- var uniqueString = "nome";
- document.body.appendChild(iframe);
- iframe.style.display = "none";
- iframe.contentWindow.name = uniqueString;
-
- // construct a form with hidden inputs, targeting the iframe
- var form = document.createElement("form");
- form.target = uniqueString;
- form.action = "http://http://10.1.0.95/Cacic/so";
- form.method = "POST";
-
- form.submit();
-}
\ No newline at end of file
diff --git a/wscacicneo/static/js/analisegraficatabela.js b/wscacicneo/static/js/analisegraficatabela.js
deleted file mode 100755
index 1ccf577..0000000
--- a/wscacicneo/static/js/analisegraficatabela.js
+++ /dev/null
@@ -1,97 +0,0 @@
-w = document.getElementById('widgets');
-t = w.textContent;
-var regex = new RegExp("'", 'g');
-t.replace(regex,'"');
-t = t.replace(regex,'"');
-JSON.parse(t);
-t = JSON.parse(t);
-
-var store1 = Ext.create('Ext.data.Store', {
- storeId:'Simpsons',
- fields:['wcount', 'ucount', 'dcount', 'a', 'b', 'c'],
- data: t,
- proxy: {
- type: 'memory',
- reader: {
- type: 'json',
- root: 'items'
- }
- }
-});
-
-Ext.require('Ext.chart.*');
-Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBox']);
-
-Ext.onReady(function () {
-
- var chart = Ext.create('Ext.chart.Chart', {
- animate: true,
- shadow: true,
- store: store1,
- axes: [{
- type: 'Numeric',
- position: 'left',
- fields: ['data1'],
- title: 'Quantidade',
- grid: true,
- minimum: 0,
- maximum: 16
- }, {
- type: 'Category',
- position: 'bottom',
- fields: ['a', 'b', 'c'],
- title: 'Sistemas Operacionais',
- label: {
- }
- }],
- series: [{
- type: 'column',
- axis: 'left',
- gutter: 80,
- xField: '',
- yField: ['wcount', 'ucount', 'dcount'],
- tips: {
- trackMouse: true,
- width: 74,
- height: 38,
- renderer: function(storeItem, item) {
- this.setTitle(storeItem.get('name'));
- this.update(storeItem.get('data1'));
- }
- },
- style: {
- fill: '#38B8BF'
- }
- }]
- });
-
-
- var panel1 = Ext.create('widget.panel', {
- width: 800,
- height: 400,
- title: 'Column Chart with Reload - Hits per Month',
- renderTo: 'centro',
- layout: 'fit',
- tbar: [{
- text: 'Save Chart',
- handler: function() {
- Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?', function(choice){
- if(choice == 'yes'){
- chart.save({
- type: 'image/png'
- });
- }
- });
- }
- }, {
- text: 'Reload Data',
- handler: function() {
- // Add a short delay to prevent fast sequential clicks
- window.loadTask.delay(100, function() {
- store1.loadData(generateData());
- });
- }
- }],
- items: chart
- });
-});
\ No newline at end of file
diff --git a/wscacicneo/static/js/basico.js b/wscacicneo/static/js/basico.js
deleted file mode 100755
index 1d1204d..0000000
--- a/wscacicneo/static/js/basico.js
+++ /dev/null
@@ -1,63 +0,0 @@
-var table = Ext.create('Ext.form.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- height: 130,
- width: 280,
- style: {
- "text-align": 'left',
- },
-
- bodyPadding: 10,
- defaultType: 'textfield',
- items: [
- {
- fieldLabel: 'Nome',
- width: 350,
- name: 'matricula'
- },
- {
- fieldLabel: 'Data da instalação',
- width: 200,
- name: 'email'
- },
- {
- xtype: 'button',
- text: 'Enviar',
- style : {
- margin : " 0px 10px 0px 330px"
- }
- },
- {
- xtype: 'button',
- text: 'Limpar',
- },
- ]
-});
-
-painel = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Software Básico',
- width: '75%',
- height: 200,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [painel],
- renderTo: 'widgets'
- });
-
-});
-
diff --git a/wscacicneo/static/js/bot.js b/wscacicneo/static/js/bot.js
deleted file mode 100755
index 927c00a..0000000
--- a/wscacicneo/static/js/bot.js
+++ /dev/null
@@ -1,53 +0,0 @@
-var table = Ext.create('Ext.form.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- height: 130,
- width: 280,
- style: {
- "text-align": 'left',
- },
-
- bodyPadding: 10,
- defaultType: 'textfield',
- items: [
- {
- fieldLabel: 'Órgão',
- width: 250,
- name: 'matricula'
- },
- {
- xtype: 'combobox',
- name: 'checkbox1',
- fieldLabel: 'Coleta',
- boxLabel: 'Coleta'
- },
- ]
-});
-
-painel = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Memoria',
- width: '75%',
- height: 200,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [painel],
- renderTo: 'widgets'
- });
-
-});
-
diff --git a/wscacicneo/static/js/botaocentro.js b/wscacicneo/static/js/botaocentro.js
deleted file mode 100755
index 0e68846..0000000
--- a/wscacicneo/static/js/botaocentro.js
+++ /dev/null
@@ -1,43 +0,0 @@
-Ext.create('Ext.button.Button', {
- text: 'Abrir texto',
- renderTo: 'centro',
- handler: function () {
-
-
- if (window.XMLHttpRequest){
-
- xmlhttp=new XMLHttpRequest();
-
- }
-
- xmlhttp.onreadystatechange=function(){
-
- if (xmlhttp.readyState==4 && xmlhttp.status==200)
-
- {
-
- document.getElementById("centro").innerHTML=xmlhttp.responseText;
-
- }
-
- }
-
- xmlhttp.open("GET",'static/cartoon.xml',true);
- xmlhttp.send();
-
-
-
-
-
-
-
-
-
- }
-
-
-
-
-
-
-});
diff --git a/wscacicneo/static/js/cadastro.js b/wscacicneo/static/js/cadastro.js
deleted file mode 100755
index caa76c3..0000000
--- a/wscacicneo/static/js/cadastro.js
+++ /dev/null
@@ -1,101 +0,0 @@
-var table = Ext.create('Ext.form.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- height: 130,
- width: 280,
- style: {
- "text-align": 'left',
- },
-
- bodyPadding: 10,
- defaultType: 'textfield',
- items: [
- {
- fieldLabel: 'Nome',
- width:450,
- name: 'nome'
- },
- {
- fieldLabel: 'Username',
- width: 250,
- name: 'matricula'
- },
- {
- fieldLabel: 'Senha',
- width: 300,
- name: 'email'
- },
- {
- fieldLabel: 'Confirmar senha',
- width: 300,
- name: 'email'
- },
-
- {
- fieldLabel: 'E-mail',
- name: 'telefone'
- },
- {
- xtype: 'combobox',
- name: 'checkbox1',
- fieldLabel: 'Orgão',
- boxLabel: 'Orgão'
- },
- {
- xtype:'combobox',
- fieldLabel: 'Cargo',
- width:450,
- name: 'cargo'
- },
- {
- fieldLabel: 'Telefone',
- xtype:'combobox',
- fieldLabel: 'Setor',
- width:450,
- name: 'setor'
- },
- {
- fieldLabel: 'SIAPE',
- width:450,
- name: 'setor'
- },
- {
- xtype: 'button',
- text: 'Enviar',
- style:{
- margin: '0px 10px 0px 300px',
- }
- },
- {
- xtype: 'button',
- text: 'Cancelar',
- },
- ]
-});
-
-painel = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Cadastro Usuário',
- width: '75%',
- height: 320,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [painel],
- renderTo: 'widgets'
- });
-
-});
diff --git a/wscacicneo/static/js/coleta.json b/wscacicneo/static/js/coleta.json
deleted file mode 100755
index 4aa491c..0000000
--- a/wscacicneo/static/js/coleta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"results":[{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BLF46","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2659","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2659","ExtClock":"333","DataWidth":"32","SystemName":"SLTI-122112"},"id_reg":"d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35","Win32_MemoryDevice":{"SystemName":"SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0139168[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112","Parameters":"[[REG]][[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"00000000[[REG]]00000000","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"21[[REG]]21","InterleavePosition":"[[REG]]","Manufacturer":"Unknown[[REG]]Unknown","Speed":"1067[[REG]]1067","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"000000000000000000000000000000000000[[REG]]000000000000000000000000000000000000","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BK80G","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"LGA 775","Name":"Intel(R) Core(TM)2 Quad CPU Q8400 @ 2.66GHz","Family":"190","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 23 Stepping 10","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Architecture":"9","Caption":"Intel64 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"21","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2667","ExtClock":"333","DataWidth":"64","SystemName":"SLTI-120715"},"id_reg":"4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce","Win32_MemoryDevice":{"SystemName":"SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715","Caption":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE4[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE2[[REG]]....CDROM0","Version":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]][[REG]]","SerialNumber":"S21PJ50Z229955[[REG]][[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715","Parameters":"[[REG]][[REG]][[REG]][[REG]]","Name":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","PortName":"XPSPort:[[REG]]10.209.50.70[[REG]]FOXIT_PDF:[[REG]]SHRFAX:[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]300[[REG]]200[[REG]]600","Attributes":"576[[REG]]576[[REG]]64[[REG]]16448[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]hpcPP6de[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]]","DriverName":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer Driver[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]]","Caption":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]][[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]300[[REG]]200[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Base Board","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 1[[REG]]Physical Memory 3","Version":"[[REG]]","InterleaveDataDepth":"2[[REG]]2","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"4294967296[[REG]]4294967296","TotalWidth":"64[[REG]]64","SerialNumber":"073357A4[[REG]]073357B3","BankLabel":"BANK 1[[REG]]BANK 3","MemoryType":"0[[REG]]0","InterleavePosition":"1[[REG]]2","Manufacturer":"0194[[REG]]0194","Speed":"1333[[REG]]1333","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"ChannelA-DIMM1[[REG]]ChannelB-DIMM1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"1[[REG]]1","OtherIdentifyingInfo":"[[REG]]","PartNumber":"SH564128FH8N0QHSCG[[REG]]SH564128FH8N0QHSCG","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"64[[REG]]64"},"Win32_BIOS":{"Version":"DELL - 6222004","Caption":"Default System BIOS","SMBIOSMinorVersion":"6","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"DELL - 6222004","Description":"Default System BIOS","SMBIOSBIOSVersion":"A10","BiosCharacteristics":"7","SerialNumber":"41JV8S1","PrimaryBIOS":"True","ReleaseDate":"20111124000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Dell Inc."},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"CPU 1","Name":"Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz","Family":"206","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 42 Stepping 7","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF000206A7","Architecture":"9","Caption":"Intel64 Family 6 Model 42 Stepping 7","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"4","UpgradeMethod":"1","DeviceID":"CPU0","L2CacheSize":"512","Revision":"10759","MaxClockSpeed":"3300","ExtClock":"100","DataWidth":"64","SystemName":"SLTI-136570"},"id_reg":"4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a","Win32_MemoryDevice":{"SystemName":"SLTI-136570[[REG]]SLTI-136570","Caption":"Memory Device[[REG]]Memory Device","Availability":"[[REG]]","InstallDate":"[[REG]]","SystemLevelAddress":"[[REG]]","NumberOfBlocks":"[[REG]]","Access":"[[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1","Description":"Memory Device[[REG]]Memory Device","EndingAddress":"4194303[[REG]]8388607","Purpose":"[[REG]]","Name":"Memory Device[[REG]]Memory Device","BlockSize":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....CDROM0","Version":"[[REG]][[REG]]","Caption":"[[REG]][[REG]]","Name":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","Model":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SerialNumber":"9VPEAXQ9[[REG]][[REG]]","MediaDescription":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]]","Capacity":"[[REG]][[REG]]","MediaType":"[[REG]][[REG]]","Manufacturer":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]1","SystemName":"SLTI-136570[[REG]]SLTI-136570[[REG]]SLTI-136570[[REG]]SLTI-136570","Parameters":"[[REG]][[REG]][[REG]]","Name":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","PortName":"XPSPort:[[REG]]SHRFAX:[[REG]]nul:[[REG]]CPW2:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]200[[REG]]600[[REG]]600","Attributes":"576[[REG]]16448[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"Microsoft XPS Document Writer[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]6","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]200[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"/41JV8S1/BR108191BJ005L/","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","Version":"A00","Product":"0HY9JP","Description":"Base Board","Manufacturer":"Dell Inc."},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9RX","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SPOA-112240"},"id_reg":"ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d","Win32_MemoryDevice":{"SystemName":"SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7X2FQ"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]1","SystemName":"SPOA-112240[[REG]]SPOA-112240","Parameters":"[[REG]]","Name":"PDFCreator[[REG]]CutePDF Writer","PortName":"PDFCreator:[[REG]]CPW2:","MaxSizeSupported":"[[REG]]","HorizontalResolution":"600[[REG]]600","Attributes":"68[[REG]]576","Network":"False[[REG]]False","Comment":"eDoc Printer[[REG]]","CharSetsSupported":"[[REG]]","Description":"[[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]]","Location":"[[REG]]","DriverName":"PDFCreator[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]]","Default":"True[[REG]]False","Shared":"False[[REG]]False","MimeTypesSupported":"[[REG]]","Caption":"PDFCreator[[REG]]CutePDF Writer","Availability":"[[REG]]","InstallDate":"[[REG]]","CurrentCharSet":"[[REG]]","Local":"True[[REG]]True","Direct":"False[[REG]]False","LanguagesSupported":"[[REG]]","WorkOffline":"False[[REG]]False","SpoolEnabled":"True[[REG]]True","DeviceID":"PDFCreator[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0","ServerName":"[[REG]]","MarkingTechnology":"[[REG]]","KeepPrintedJobs":"False[[REG]]False","ShareName":"PDFCreator[[REG]]","VerticalResolution":"600[[REG]]600","MaxNumberUp":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9RX","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9JZ","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112211"},"id_reg":"e7f6c011776e8db7cd330b54174fd76f7d0216b612387a5ffcfb81e6f0919683","Win32_MemoryDevice":{"SystemName":"SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7X2N7"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7","SystemName":"SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211","Parameters":"[[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576","Network":"False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]]","Location":"[[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9JZ","Tag":"Base Board","Description":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Caption":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BLF3R","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SE-122248"},"id_reg":"7902699be42c8a8e46fbbb4501726517e86b22c56a189f7625a6da49081b2451","Win32_MemoryDevice":{"SystemName":"SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0139148[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248","Parameters":"[[REG]][[REG]][[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"[[REG]]600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9LZ","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2992","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112208"},"id_reg":"2c624232cdd221771294dfbb310aca000a0df6ac8b66b696d90ef06fdefb64a3","Win32_MemoryDevice":{"SystemName":"SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7WZER"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208","Parameters":"[[REG]][[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9LZ","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 1[[REG]]Physical Memory 3","Version":"[[REG]]","InterleaveDataDepth":"2[[REG]]2","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"4294967296[[REG]]4294967296","TotalWidth":"64[[REG]]64","SerialNumber":"07336A67[[REG]]07336A6D","BankLabel":"BANK 1[[REG]]BANK 3","MemoryType":"0[[REG]]0","InterleavePosition":"1[[REG]]2","Manufacturer":"0194[[REG]]0194","Speed":"1333[[REG]]1333","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"ChannelA-DIMM1[[REG]]ChannelB-DIMM1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"1[[REG]]1","OtherIdentifyingInfo":"[[REG]]","PartNumber":"SH564128FH8N0QHSCG[[REG]]SH564128FH8N0QHSCG","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"64[[REG]]64"},"Win32_BIOS":{"Version":"DELL - 6222004","Caption":"Default System BIOS","SMBIOSMinorVersion":"6","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"DELL - 6222004","Description":"Default System BIOS","SMBIOSBIOSVersion":"A10","BiosCharacteristics":"7","SerialNumber":"41QH8S1","PrimaryBIOS":"True","ReleaseDate":"20111124000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Dell Inc."},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"CPU 1","Name":"Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz","Family":"206","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 42 Stepping 7","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF000206A7","Architecture":"9","Caption":"Intel64 Family 6 Model 42 Stepping 7","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"4","UpgradeMethod":"1","DeviceID":"CPU0","L2CacheSize":"512","Revision":"10759","MaxClockSpeed":"3300","ExtClock":"100","DataWidth":"64","SystemName":"SLTI-136537"},"id_reg":"19581e27de7ced00ff1ce50b2047e7a567c76b1cbaebabe5ef03f7c3017bb5b7","Win32_MemoryDevice":{"SystemName":"SLTI-136537[[REG]]SLTI-136537","Caption":"Memory Device[[REG]]Memory Device","Availability":"[[REG]]","InstallDate":"[[REG]]","SystemLevelAddress":"[[REG]]","NumberOfBlocks":"[[REG]]","Access":"[[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1","Description":"Memory Device[[REG]]Memory Device","EndingAddress":"4194303[[REG]]8388607","Purpose":"[[REG]]","Name":"Memory Device[[REG]]Memory Device","BlockSize":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....CDROM0","Version":"[[REG]]","Caption":"[[REG]]","Name":"[[REG]]","InstallDate":"[[REG]]","Model":"[[REG]]","PartNumber":"[[REG]]","SerialNumber":"9VPEEZ7Y[[REG]]","MediaDescription":"[[REG]]","Description":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","Capacity":"[[REG]]","MediaType":"[[REG]]","Manufacturer":"[[REG]]","SKU":"[[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]7[[REG]]7[[REG]]1","SystemName":"SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537","Parameters":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","PortName":"10.209.50.129[[REG]]XPSPort:[[REG]]10.209.50.40[[REG]]SHRFAX:[[REG]]nul:[[REG]]CPW2:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]200[[REG]]600[[REG]]600","Attributes":"584[[REG]]576[[REG]]2624[[REG]]16448[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]][[REG]]","DriverName":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Shared":"True[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Caption":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"50[[REG]][[REG]]49[[REG]][[REG]][[REG]]6","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","JobCountSinceLastReset":"1[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"Ricoh Aficio MP C2500 PCL6[[REG]][[REG]][[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]200[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"/41QH8S1/BR108191BI00MZ/","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","Version":"A00","Product":"0HY9JP","Description":"Base Board","Manufacturer":"Dell Inc."},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BKM50","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SE-120708"},"id_reg":"4a44dc15364204a80fe80e9039455cc1608281820fe2b24f1e5233ade6af1dd5","Win32_MemoryDevice":{"SystemName":"SE-120708[[REG]]SE-120708[[REG]]SE-120708[[REG]]SE-120708","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0035648[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7[[REG]]7","SystemName":"SE-120708[[REG]]SE-120708[[REG]]SE-120708[[REG]]SE-120708","Parameters":"[[REG]][[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint[[REG]]HPZPP052","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]][[REG]]","VerticalResolution":"[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BKZD1","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SLTI-120396"},"id_reg":"4fc82b26aecb47d2868c4efbe3581732a3e7cbcc6c2efb32062c08170a05eeb8","Win32_MemoryDevice":{"SystemName":"SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de interface humana USB","Name":"Dispositivo de interface humana USB","Description":"Dispositivo de interface humana USB","Manufacturer":"(Dispositivos de sistema padro)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"1SUF5JQ0432076[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7","SystemName":"SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396","Parameters":"[[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:","MaxSizeSupported":"[[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68","Network":"False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]]","CharSetsSupported":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]][[REG]]","Location":"[[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","PaperTypesAvailable":"[[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True","Shared":"False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","Availability":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","JobCountSinceLastReset":"0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]]","VerticalResolution":"[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG904F0ZH","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112183"},"id_reg":"6b51d431df5d7f141cbececcf79edf3dd861c3b4069f0b11661a3eefacbba918","Win32_MemoryDevice":{"SystemName":"SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","Version":"[[REG]]","Caption":"[[REG]]","Name":"[[REG]]","InstallDate":"[[REG]]","Model":"[[REG]]","PartNumber":"[[REG]]","SerialNumber":"6RX7VX3V","MediaDescription":"[[REG]]","Description":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","Capacity":"[[REG]]","MediaType":"[[REG]]","Manufacturer":"[[REG]]","SKU":"[[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]1","SystemName":"SLTI-112183[[REG]]SLTI-112183","Parameters":"[[REG]]","Name":"PDFCreator[[REG]]CutePDF Writer","PortName":"PDFCreator:[[REG]]CPW2:","MaxSizeSupported":"[[REG]]","HorizontalResolution":"600[[REG]]600","Attributes":"68[[REG]]576","Network":"False[[REG]]False","Comment":"eDoc Printer[[REG]]","CharSetsSupported":"[[REG]]","Description":"[[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]]","Location":"[[REG]]","DriverName":"PDFCreator[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]]","Default":"True[[REG]]False","Shared":"False[[REG]]False","MimeTypesSupported":"[[REG]]","Caption":"PDFCreator[[REG]]CutePDF Writer","Availability":"[[REG]]","InstallDate":"[[REG]]","CurrentCharSet":"[[REG]]","Local":"True[[REG]]True","Direct":"False[[REG]]False","LanguagesSupported":"[[REG]]","WorkOffline":"False[[REG]]False","SpoolEnabled":"True[[REG]]True","DeviceID":"PDFCreator[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0","ServerName":"[[REG]]","MarkingTechnology":"[[REG]]","KeepPrintedJobs":"False[[REG]]False","ShareName":"PDFCreator[[REG]]","VerticalResolution":"600[[REG]]600","MaxNumberUp":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG904F0ZH","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}}],"result_count":12}
\ No newline at end of file
diff --git a/wscacicneo/static/js/computador.js b/wscacicneo/static/js/computador.js
deleted file mode 100755
index 4261fde..0000000
--- a/wscacicneo/static/js/computador.js
+++ /dev/null
@@ -1,72 +0,0 @@
-var table = Ext.create('Ext.form.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- height: 130,
- width: 280,
- style: {
- "text-align": 'left',
- },
-
- bodyPadding: 10,
- defaultType: 'textfield',
- items: [
- {
- fieldLabel: 'Nº Patrimônio',
- width:300,
- name: 'nome'
- },
- {
- fieldLabel: 'Fabricante',
- xtype:'combobox',
- width: 300,
- name: 'tipo'
- },
- {
- fieldLabel: 'Marca',
- width:300,
- name: 'marca'
- },
- {
- xtype: 'button',
- text: 'Enviar',
- style:{
- margin: '0px 10px 0px 270px',
- }
- },
- {
- xtype: 'button',
- text: 'Limpar',
- style:{
- margin: '0px 10px 0px 0px',
- }
- },
- ]
-});
-
-painel = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Computador',
- width: 425,
- height: 150,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [painel],
- renderTo: 'widgets'
- });
-
-});
-
diff --git a/wscacicneo/static/js/config.js b/wscacicneo/static/js/config.js
deleted file mode 100755
index f8971da..0000000
--- a/wscacicneo/static/js/config.js
+++ /dev/null
@@ -1,128 +0,0 @@
-/*GRAFICO DE ORGÃOS*/
-
-
-Ext.define('User',{
- extend: 'Ext.data.Model',
- fields: [ 'codigo', 'orgao', 'date' ]
-});
-
-var userStore = Ext.create('Ext.data.Store', {
- model: 'User',
- data: [
- { codigo: 'Gráficos'},
- { codigo: 'Favoritos'},
- { codigo: 'Pesquisa Rápida'},
- { codigo: 'Notificações'},
- { codigo: 'Base de Dados'},
- ]
-});
-
-table = Ext.create('Ext.grid.Panel', {
- store: userStore,
- width: 400,
- height: 200,
- // title: 'Application Users',
- columns: [
- {
- text: 'Opções',
- width: 550,
- sortable: true,
- hideable: false,
- dataIndex: 'codigo'
- },
- ]
-});
-
-tabela = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Configurações da Aplicação',
- width: '75%',
- height: 165,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [tabela],
- renderTo: 'widgets'
- });
-
-});
-
-
-// **** FILTRO DE ITENS ****
-
-Ext.define('User1',{
- extend: 'Ext.data.Model',
- fields: ['chbox', 'item' ]
-});
-
-var userStore1 = Ext.create('Ext.data.Store', {
- model: 'User1',
- data: [
- { item: 'Relatórios'},
- { item: 'Meu Perfil'},
- ]
-});
-
-table1 = Ext.create('Ext.grid.Panel', {
- store: userStore1,
- width: 400,
- height: 200,
- // title: 'Application Users',
- columns: [
- {
- text: 'Pesquisar',
- width: 500,
- sortable: true,
- hideable: false,
- dataIndex: 'item'
- },
- {
- text: 'Remover',
- width: 100,
- sortable: true,
- hideable: false,
- dataIndex: 'excluir'
- },
-
- ]
-});
-
-tabela1 = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Favoritos',
- width: '75%',
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table1,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding:'15px',
- items: [tabela1],
- renderTo: 'widgets'
- });
-
-});
-
diff --git a/wscacicneo/static/js/configapi.js b/wscacicneo/static/js/configapi.js
deleted file mode 100755
index d8c4af9..0000000
--- a/wscacicneo/static/js/configapi.js
+++ /dev/null
@@ -1,66 +0,0 @@
-var table = Ext.create('Ext.form.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- height: 130,
- width: 280,
- style: {
- "text-align": 'left',
- },
-
- bodyPadding: 10,
- defaultType: 'textfield',
- items: [
- {
- xtype:'combobox',
- fieldLabel: 'Fonte',
- width:300,
- name: 'fonte'
- },
- {
- xtype:'combobox',
- fieldLabel: 'Estilo de cores',
- width: 250,
- name: 'matricula'
- },
- {
- xtype: 'button',
- text: 'Confirmar',
- style:{
- margin: '0px 10px 0px 300px',
- }
- },
- {
- xtype: 'button',
- text: 'Cancelar',
- },
-
- ]
-});
-
-painel = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Configuração da Aplicação',
- width: '75%',
- height: 200,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [painel],
- renderTo: 'widgets'
- });
-
-});
-
diff --git a/wscacicneo/static/js/configcoleta.js b/wscacicneo/static/js/configcoleta.js
deleted file mode 100755
index a5ff12b..0000000
--- a/wscacicneo/static/js/configcoleta.js
+++ /dev/null
@@ -1,154 +0,0 @@
-// **** FILTRO DE ITENS ****
-
-Ext.define('User1',{
- extend: 'Ext.data.Model',
- fields: ['chbox', 'item' ]
-});
-
-var userStore1 = Ext.create('Ext.data.Store', {
- model: 'User1',
- data: [
- { item: 'Computador'},
- { item: 'Processador'},
- { item: 'Memórias'},
- { item: 'Hard Disk (HD)'},
- { item: 'Sistemas Operacionais'},
- { item: 'Suítes de Escritórios'},
- { item: 'Ativos de Redes'},
- { item: 'Softwares Básicos'},
- ]
-});
-
-table1 = Ext.create('Ext.grid.Panel', {
- store: userStore1,
- width: 400,
- height: 200,
- // title: 'Application Users',
- columns: [
- {
- text: 'Item',
- width: 500,
- sortable: true,
- hideable: false,
- dataIndex: 'item'
- },
- ]
-});
-
-tabela1 = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Campos da Coleta',
- width: '75%',
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table1,
-});
-
-
- Ext.create('Ext.Container', {
- padding:'15px',
- items: [tabela1],
- renderTo: 'widgets'
- });
-
-
-
-//------------------------------------
-
-
-Ext.define('User2',{
- extend: 'Ext.data.Model',
- fields: ['chbox', 'item' ]
-});
-
-var userStore2 = Ext.create('Ext.data.Store', {
- model: 'User2',
- data: [
- { item: 'Computador'},
- { item: 'Processador'},
- { item: 'memórias'},
- { item: 'memórias'},
-
- ]
-});
-
-table2 = Ext.create('Ext.grid.Panel', {
- store: userStore2,
- width: 400,
- // title: 'Application Users',
- columns: [
- {
- text: 'Item',
- width: 490,
- sortable: true,
- hideable: false,
- dataIndex: 'item'
- },
- ],
- bbar:[
- {
- xtype: 'button',
- text: 'Gerar Relatório',
- style:{
- margin: '0px 10px 0px 200px',
- }
- },
- {
- xtype: 'button',
- text: 'Limpar Campos',
- },{
- xtype: 'button',
- text: 'Cancelar',
- },
- ]
-});
-
-tabela2 =Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Campos Selecionados',
- width: '75%',
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: [table2,
- {
- xtype: 'button',
- text: 'Gerar Relatório',
- style:{
- margin: '0px 10px 0px 0px',
- }
- },
- {
- xtype: 'button',
- text: 'Limpar Campos',
- },{
- xtype: 'button',
- text: 'Cancelar',
- },
-]
-
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding:'15px',
- items: [tabela2],
- renderTo: 'widgets'
- });
-
-});
-
-
diff --git a/wscacicneo/static/js/configfav.js b/wscacicneo/static/js/configfav.js
deleted file mode 100755
index 3a00ade..0000000
--- a/wscacicneo/static/js/configfav.js
+++ /dev/null
@@ -1,130 +0,0 @@
-// **** FILTRO DE ITENS ****
-
-Ext.define('User1',{
- extend: 'Ext.data.Model',
- fields: ['chbox', 'item' ]
-});
-
-var userStore1 = Ext.create('Ext.data.Store', {
- model: 'User1',
- data: [
- { item: 'Relatórios'},
- { item: 'Gestão de Orgãos'},
- { item: 'Notificações'},
- { item: 'Meu Perfil'},
- { item: 'Configurar API'},
- ]
-});
-
-table1 = Ext.create('Ext.grid.Panel', {
- store: userStore1,
- width: 400,
- height: 200,
- // title: 'Application Users',
- columns: [
- {
- text: 'Item',
- width: 500,
- sortable: true,
- hideable: false,
- dataIndex: 'item'
- },
- ]
-});
-
-tabela1 = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Lista de Funcionalidade',
- width: '75%',
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table1,
-});
-
-
- Ext.create('Ext.Container', {
- padding:'15px',
- items: [tabela1],
- renderTo: 'widgets'
- });
-
-
-
-//------------------------------------
-
-
-Ext.define('User2',{
- extend: 'Ext.data.Model',
- fields: ['chbox', 'item' ]
-});
-
-var userStore2 = Ext.create('Ext.data.Store', {
- model: 'User2',
- data: [
- { item: 'Relatório'},
- { item: 'Meu Perfil'},
-
- ]
-});
-
-table2 = Ext.create('Ext.grid.Panel', {
- store: userStore2,
- width: 400,
- // title: 'Application Users',
- columns: [
- {
- text: 'Item',
- width: 490,
- sortable: true,
- hideable: false,
- dataIndex: 'item'
- },
- ],
- bbar:[
- {
- xtype: 'button',
- text: 'Confirmar',
- style:{
- margin: '0px 10px 0px 320px',
- }
- },
- ,{
- xtype: 'button',
- text: 'Cancelar',
- },
- ]
-});
-
-tabela2 =Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Favoritos',
- width: '75%',
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table2,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding:'15px',
- items: [tabela2],
- renderTo: 'widgets'
- });
-
-});
-
-
diff --git a/wscacicneo/static/js/confighome.js b/wscacicneo/static/js/confighome.js
deleted file mode 100755
index 141b9c8..0000000
--- a/wscacicneo/static/js/confighome.js
+++ /dev/null
@@ -1,64 +0,0 @@
-var table = Ext.create('Ext.form.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- height: 130,
- width: 280,
- style: {
- "text-align": 'left',
- },
-
- bodyPadding: 10,
- defaultType: 'textfield',
- items: [
- {
- fieldLabel: 'Numero de atividades visíveis',
- width:200,
- name: 'ultimas'
- },
- {
- fieldLabel: 'Numero da coleta do grafico',
- width: 250,
- name: 'matricula'
- },
- {
- xtype: 'button',
- text: 'Confirmar',
- style:{
- margin: '0px 10px 0px 300px',
- }
- },
- {
- xtype: 'button',
- text: 'Cancelar',
- },
-
- ]
-});
-
-painel = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Configurações da Pagina Inicial',
- width: '75%',
- height: 200,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [painel],
- renderTo: 'widgets'
- });
-
-});
-
diff --git a/wscacicneo/static/js/dashboard.js b/wscacicneo/static/js/dashboard.js
deleted file mode 100755
index 61eebad..0000000
--- a/wscacicneo/static/js/dashboard.js
+++ /dev/null
@@ -1,58 +0,0 @@
-// **** FILTRO DE ITENS ****
-
-Ext.define('User1',{
- extend: 'Ext.data.Model',
- fields: ['chbox', 'item' ]
-});
-
-var userStore1 = Ext.create('Ext.data.Store', {
- model: 'User1',
- data: [
- { item: 'Coletas 1120, 1131, 1149, estão desatualizadas'},
- { item: 'Coleta 1123, Incorreta Número de computadores inconsistente'},
- { item: 'Coleta não efetuada: coleta 1151 está atualizada'},
- ]
-});
-
-table1 = Ext.create('Ext.grid.Panel', {
- store: userStore1,
- width: 400,
- height: 200,
- // title: 'Application Users',
- columns: [
- {
- text: 'Item',
- width: 500,
- sortable: true,
- hideable: false,
- dataIndex: 'item'
- },
- ]
-});
-
-tabela1 = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Notificações',
- width: '75%',
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table1,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding:'15px',
- items: [tabela1],
- renderTo: 'widgets'
- });
-
-});
-
diff --git a/wscacicneo/static/js/db.js b/wscacicneo/static/js/db.js
deleted file mode 100755
index 66a3fca..0000000
--- a/wscacicneo/static/js/db.js
+++ /dev/null
@@ -1,83 +0,0 @@
-var table = Ext.create('Ext.form.Panel', {
- renderTo: Ext.getBody(),
- title: '',
- height: 1000,
- width: 280,
- style: {
- "text-align": 'left',
- },
-
- bodyPadding: 10,
- defaultType: 'textfield',
- items: [
- {
- xtype: 'combobox',
- name: 'checkbox1',
- fieldLabel: 'Órgão',
- boxLabel: 'Orgão'
- },
- {
- fieldLabel: 'Senha da base',
- name: 'senha',
- },
- {
- fieldLabel: 'Confirmar senha',
- name: 'email'
- },
- {
- fieldLabel: 'Nome da Base',
- name: 'telefone'
- },
- {
- xtype:'combobox',
- fieldLabel: 'Remover campo',
- name: 'cargo'
- },
- {
- fieldLabel: 'MAC',
- name: 'setor'
- },
- {
- fieldLabel: 'App a evitar',
- name: 'setor'
- },
- {
- xtype: 'button',
- text: 'Enviar',
- style:{
- margin: '0px 10px 0px 0px',
- }
- },
- {
- xtype: 'button',
- text: 'Cancelar',
- },
- ]
-});
-
-painel = Ext.create('Ext.panel.Panel', {
- layout: 'fit',
- title: 'Configurar Base de Dados',
- width: 500,
- height: 280,
- frame: true,
- draggable: true,
- collapsible: true,
- border : true,
- style: {
- "text-align": 'center',
- margin: '0px auto 15px auto'
- },
- items: table,
-});
-
-Ext.onReady(function(){
-
-
- Ext.create('Ext.Container', {
- padding: '15px',
- items: [painel],
- renderTo: 'widgets'
- });
-
-});
diff --git a/wscacicneo/static/js/diagnostic.js b/wscacicneo/static/js/diagnostic.js
deleted file mode 100755
index 5c4db1c..0000000
--- a/wscacicneo/static/js/diagnostic.js
+++ /dev/null
@@ -1,48 +0,0 @@
-var painelContent=
- "Diagnóstico 1" + "
" +
- "Diagnóstico 2" + "
" +
- "Diagnóstico 3" + "
" +
- "Diagnóstico 4" + "
" +
- "Diagnóstico 5" + "
" +
- "Diagnóstico 6" + "
" +
- "Diagnóstico 7" + "
" +
- "Diagnóstico 8" + "
" +
- "