terça-feira, 14 de junho de 2016

Como desabilitar, Desinstalar, ou Reinstalar o OneDrive no Windows 10


How to Disable, Uninstall, or Reinstall OneDrive in Windows 10

windows-10-onedrive

Disable OneDrive in Windows 10

Disabling OneDrive in Windows 10 is super easy, because it’s built right into OneDrive’s settings for once. If you want to use OneDrive in the future, this is the best way to deal with it instead of uninstalling it.
If you signed up with Windows 10 using your Microsoft Account, it’ll automatically activate and starting using OneDrive once upgraded or installed.
Look in the system tray and right-click on the OneDrive icon.
onedrive-system-tray
Then, click on “Settings.”
onedrive-settings
Once OneDrive’s settings panel opens, click on “Start OneDrive automatically when I sign in to Windows” to disable OneDrive from starting.
Now, click on “Unlink OneDrive” as well to unlink your Microsoft account with the PC’s version of OneDrive.
Click “OK” to close the window and then open File Explorer.
If at any time you want to enable OneDrive again, simply click the box next to “Start OneDrive automatically when I sign in to Windows” in the settings.

Remove OneDrive from the Windows 10 File Explorer

Thanks to these steps from WinAero, you can remove OneDrive from the File Explorer navigation to disable all of OneDrive in Windows 10.
We recommend leaving the registry entries that remove OneDrive from File Explorer alone if you have even an inkling you want to use OneDrive again in the future. Some users have reported that reinstalling or enabling OneDrive after removing it from the File Explorer has automatically added it back, others have said it doesn’t. Proceed with caution.
Make sure to make a backup of your registry before continuing in the event you need to restore your registry because of an error.
Open the Registry Editor and navigate to the following entry:
HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder
Change the DWORD Attributes value to f090004d.
If you are utilizing the 64-bit version of Windows 10, you’ll need to do the same to the following registry entry, too:
HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{B4FB3F98-C1EA-428d-A78A-D1F5659CBA93}\ShellFolder
Now, restart your computer and OneDrive will be gone from the File Explorer as well.

Uninstalling OneDrive in Windows 10

Depending on what version of Windows 10 you’re running, you’ll need to use one of two commands.
First though, open the Run dialog by searching for “Run” with Cortana.
run-windows-10
Enter the following command to terminate OneDrive from running:
taskkill /f /im OneDrive.exe
Now, enter one of the two following commands based on what type of OS you’re running:
  • 64-bit: %SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall
  • 32-bit: %SystemRoot%\System32\OneDriveSetup.exe /uninstall
It will appear as nothing is happening, but OneDrive will be uninstalled in the background. You’ll find the OneDrive icon gone from the system tray. You’ll still need to remove the File Explorer icon and entry with the above steps.
Your files, folders and more will still be on your computer. If you want to get rid of them, you’ll want to open an administrator-elevated Command Prompt.
Enter the following commands in succession:
rd “%UserProfile%\OneDrive” /Q /S
rd “%LocalAppData%\Microsoft\OneDrive” /Q /S
rd “%ProgramData%\Microsoft OneDrive” /Q /S
rd “C:\OneDriveTemp” /Q /S

Reinstalling OneDrive in Windows 10

You’ll need to restart your PC before reinstalling OneDrive in Windows 10.
Once restarted, navigate to the following folder:
C:\Users\USERNAME\AppData\Local\Microsoft\OneDrive\Update\OneDriveSetup.exe
USERNAME is the username of the administrator account on your PC. You may need to enable Hidden Items in File Explorer to see this location.
reinstall-onedrive
The installer will begin to run and you’ll be prompted to login to your Microsoft account.
You may need to take part in two-factor authentication as well.
choose-folder
You’ll be asked where to place the default OneDrive folder. If you didn’t change this folder previously, it’ll be the same and you’ll be asked to confirm its location.
sync-onedrive
Once installed, OneDrive will begin syncing anything you changed online with your offline files and vice versa.

Conclusion

Whether you use OneDrive or not, it’s part of the Windows family now. OneDrive can be a powerful tool for Windows users, especially when coupled with Office 365.
Depending on what you want to do with OneDrive, you have options, including reinstalling it if you change your mind in Windows 10.

segunda-feira, 13 de junho de 2016

Instalando Programas Via GPO - Windows Server

Imagine for a minute that your boss came in one day, gave you a Foxit DVD and said that everyone in your organization needs to get that DPF software that's on this DVD installed today.
You think, well that's great but are you sure you want all 500 people to get the software today?
That's almost impossible, isn't it? There isn't enough time for you to walk around with the DVD and install it 500 times.
Sure there is! But you won't be walking around with the DVD in your hand, that's for sure.
The solution I'm going to show you today is quite simple, and much less time consuming
You are going to copy that software on a Shared Folder on your network. Then, you're going to create a Group Policy Object, aka GPO, (aren't you happy you installed Active Directory?) that will take that software and install it on everyone's machines.
Easy, huh? Of course it is and it is not going to take you days, I promise.

What You Need Before Installing Software Using GPOs

There are 3 things you will need in order to have a successful Software Installation GPO:
1. The most important thing you will need is a Microsoft installer file, called .msi -- you cannot use the .exe file that is on the DVD.
You will need to get a packaging utility to turn that .exe file into .msi file. Many of them are available for instant download from internet.
There are a few that will cost money but there are also free downloads. Here is an example from each:
2. The second thing you will need to create is a Shared Folder on your network for the software to live in. You need to make sure that every computer has at least "read" access to that folder and its contents.
3. And the last thing you will need is the new Group Policy Objectlinked to the appropriate Organization Unit.

How to Install Software Using GPOs

Assuming that you already have the .msi file ready, let's start with creating a shared folder on our network.
1. Browse to the location on your network, right-click and select New, then Folder.
Installing Software Using GPOs on Windows Server 2008 - 1
2. Name the folder -- in this example we are going to call it "Software".
3. Select that folder and then click on the Share button on the menu toolbar.
Installing Software Using GPOs on Windows Server 2008 - 2
4. Like I mentioned above, every machine needs to have at least read access to this folder. To do this type in Everyone and hit enter, or click on the Add button.
Installing Software Using GPOs on Windows Server 2008 - 3
5. Make sure the Permission Level says Reader and then click the Sharebutton.
Installing Software Using GPOs on Windows Server 2008 - 4
6. Remember or write down the location of this shared folder. In our example the location is \\
Y-MEM1-2K8\Software
Installing Software Using GPOs on Windows Server 2008 - 5
7. Double click on the Shared Folder you just created and once again perform the steps to create a new folder.
This time name the folder with a name specific to the software you are about to install. We are going to call it "Foxit".
Installing Software Using GPOs on Windows Server 2008 - 6
8. Double click on the new folder ("Foxit") and copy and paste the .msi file for the software you want to install. Our .msi is calledFoxitReader23.
Installing Software Using GPOs on Windows Server 2008 - 7
9. Now it is time to switch to your domain controller.
We are going to switch to our DC1 server. Once there, go ahead and open up Server Manager.
Installing Software Using GPOs on Windows Server 2008 - 8
10. Now you need to point to the Organizational Unit where the newGroup Policy Object will reside.
To start off, go ahead and expand Features, then Group Policy Management, and then your Forest. In our example it is the Globomantics.com forest.
11. Then expand Domains and then the domain in which you want to create the GPO.
12. Once you are in the correct domain, expand the Organizational Unit. In our example, we are expanding NewYorkOU.
13. Since we want the software to be installed on every single computer, we are going to create the Group Policy Object in our NYComputers Organization Unit.
Go ahead and click on that OU.
Installing Software Using GPOs on Windows Server 2008 - 9
14. To create a new GPO, right-click on the appropriate Organization Unit and select Create a GPO in this domain, and Link it here...
Installing Software Using GPOs on Windows Server 2008 - 10
15. Name your new GPO and hit OK.
Installing Software Using GPOs on Windows Server 2008 - 11
16. To make sure the new GPO was created, go ahead and expand theGroup Policy Objects.
You should see your GPO listed there. That GPO is now being linked to our NYComputers OU.
Installing Software Using GPOs on Windows Server 2008 - 12
17. Select and then right click on the GPO under the Organization Unit. Then select Edit.
Installing Software Using GPOs on Windows Server 2008 - 13
18. That should open a Group Policy Management Editor.
19. Go ahead and expand Computer Configuration, then Policies, and then Software Settings.
20. Next click on and select Software Installation.
Installing Software Using GPOs on Windows Server 2008 - 14
21. Right click on the right side of the Software Installation, select Newand then click on Package.
Installing Software Using GPOs on Windows Server 2008 - 15
22. Browse to the location where your software .msi file exists.
In our example it is NY-MEM1-2K8 → Software → Foxit. Once you have located it, double click on the file or select it and then click on the Openbutton.
Installing Software Using GPOs on Windows Server 2008 - 16
23. Select Assigned and click OK.
Installing Software Using GPOs on Windows Server 2008 - 17

Testing

Before you actually go and test this on one of your client machines, do not forget to run a GPO Update. To do so, open up you command prompt on your Domain Controller and type in gpupdate /force.
Installing Software Using GPOs on Windows Server 2008 - 18
Installing Software Using GPOs on Windows Server 2008 - 19
Once the update ran through you can go to one of your clients and restart the machine. Keep in mind that in order for the software to be installed on a computer, you will need to do a hard reboot.
Now go ahead and relax for the rest of your day.
Ready to test your skills in Windows Networking Infrastructure? See how they stack up with this assessment from Smarterer. Start thisWindows Networking Infrastructure  test now

Arquive de E-mails - Outlook 2013

ARQUIVE E-MAILS
Imagine o seguinte caso: Você tem uma conta de e-mail na qual recebe mais de 50 e-mails por dia. Em uma semana esse número sobe para 350 e-mails. Em um mês isso chegará a 1500. Caso não tenha uso para esses e-mails, configure o auto-arquivar do Outlook 2013.
Vá na caixa de entrada e clique em Propriedades.
tornar o Outlook 2013 mais rápido Quatro maneiras de tornar o Outlook 2013 mais rápido - {focus keyword}
Na guia AutoArquivar, marque a opção Arquivar essa pasta usando estas configurações. Você pode fazer com que os e-mails sejam enviados para outro arquivo PST em separado.
Para isso, escolha Mover itens antigos para e clique em procurar para definir onde o arquivo será salvo.
tornar o Outlook 2013 mais rápido Quatro maneiras de tornar o Outlook 2013 mais rápido - {focus keyword}
Caso não os queira mais, escolha a opção Excluir itens antigos permanentemente.
tornar o Outlook 2013 mais rápido Quatro maneiras de tornar o Outlook 2013 mais rápido - {focus keyword}
REMOVA E-MAILS COM ANEXOS GRANDES

Como traduzir confirmação de envio de Formulário - Jotform

The translation tool helps you reach a global audience much better, as your forms can cater to a multilingual audience. It will help your visitors control the language that your form reads in, bringing you higher conversion and satisfaction rates. 


How to make your forms multilingual (translatable to different languages)
1. Edit an existing form or create a new one
2. Click "Preferences"
3. In the Preferences window, scroll down while you are in General tab
4. Look for the "Languages" and click "Add" button

3. Click on Add New and search for your language.

4. Now select the language and the translation window for the selected language should open up. You can now start adding the translation:
Take note of the warning in red icons, that means that the particular field is not translated automatically or there's no translation available into our system. You have to click on it and translate:
5. When you're done, just simply click "Save" buttons.

Now, if you want to have the added language as the default one, just simply click on it, and click "Set Default" option:

Lastly, to make the form to detect the language of the browser. Simply click on the "Options" button:
Check the option for "Detect user browser language":
From there, you can also choose the "Button Format" and the "Theme". Again, don't forget to save the entire changes to the form.

sexta-feira, 10 de junho de 2016

Microsoft Setup Bootstrapper Parou de Funcionar

Execute as ferramentas dos links abaixo:



Após executar, siga os passos abaixo:

1. Pressione a tecla do Windows + R para abrir a caixa do comando Executar.
2. Nesta caixa, digite REGEDIT e clique em OK.
3. Localize a pasta HKEY_LOCAL_MACHINE\Software\Microsoft\Office\15.0, clique com o botão direito sobre a pasta 15.0, logo após clique em Renomear e renomeie para 15.0.old
4. Localize a pasta HKEY_CURRENT_USER\Software\Microsoft\Office\15.0, clique com o botão direito sobre a pasta 15.0, logo após clique em Renomear e renomeie para 15.0.old
5. Feche o Editor de Registro.
NOTA: Caso não exista uma das pastas dos itens 3 ou 4, nos informe na próxima postagem.

Agora acesse a pasta C:\Arquivos de Programas e exclua a pasta "Microsoft Office 15". Após concluir, tente efetuar a instalação novamente.

terça-feira, 7 de junho de 2016

Configuração da Mapfre no IE


Ferramenta > Opções da Internet
Segurança > Sites Confiáveis > abaixo em “Sites” > Adicionar: (*. Antes de cada site)

*. mapfreconnect.com.br
*.mapfre.com.br
*.bmk.com.br
*.vidaseguradora.com.br
*.mapfrevidamassificados.com.br

Após adicionar os endereços, DESMARCAR a opção “Exigir verificação do servidor (https:) para todos os sites desta zona”.

Clique em Fechar.


Ainda em Sites Confiáveis > Nível Personalizado ... 
Aperte a letra “E” do teclado até aparecer “Exibir conteúdo misto” > clique em Habilitar > OK para fechar a janela.

Na guia Privacidade > Sites > Informe os endereços abaixo e clique em permitir cada um deles:
mapfreconnect.com.br
mapfre.com.br
bmk.com.br
vidaseguradora.com.br
mapfrevidamassificados.com.br

Clique em OK para fechar a janela e salvar as permissões.


Privacidade > Avançado > Marque a opção “Ignorar manipulação automática de cookies”
Cookies Internos > Aceitar
Cookies de Terceiros  > Aceitar
Marcar a opção “Sempre permitir cookies de sessão” > OK > Aplicar > OK.







domingo, 5 de junho de 2016

Site que faz Video Conferencias sem necessidade de instalação de software e login

  • Site AppearIn permite fazer videoconferência pela internet sem a instalação de programas
    Site AppearIn permite fazer videoconferência pela internet sem a instalação de programas
O Appear.in (https://appear.in) é um site que permite realizar videoconferências grátis, de forma online, sem a necessidade de baixar ou instalar programas. Para utilizar a alternativa, basta ter com computador conectado à internet e uma webcam com microfone.
Ao entrar no site, o usuário escolhe o endereço onde será feita a videoconferência – a URL será sempre um nome ao final de https://appear.in (por exemplo, https://appear.in/uoltecnologia ou https://appear.in/uolnoticias). Como o sistema não exige senhas, o ideal é criar um nome pouco óbvio para evitar intrusos na conversa.
Ao clicar no botão "Create", basta enviar o endereço para seus amigos. Eles só precisam copiar a URL no navegador para começar a conversar. O programa permite no máximo oito participantes por conferência e oferece a possibilidade de enviar mensagens de texto.
Nos testes realizados pelo UOL Tecnologia,em algumas ocasiões o áudio ficou "picado". Entretanto, no geral, mesmo com oito pessoas participando da conferência, a qualidade de vídeo e de som permitiram ótima comunicação à distância.
O Appear.in é compatível com os navegadores Chrome, Firefox e Opera.

sábado, 4 de junho de 2016

Como ativar atualizações automáticas do Mac OSX

Passo 1. Clique no ícone da  Apple (a maçã) e acesse a opção “Preferências do Sistema”;
Acessando as preferências de sistema do Mac OS X Mavericks (Foto: Reprodução/Marvin Costa)Acesse as preferências de sistema do Mac OS X Mavericks (Foto: Reprodução/Marvin Costa)
Passo 2. Clique sobre o ícone da App Store para acessar as configurações da loja de aplicativos do Mac OS X Mavericks;
Acessando as configurações da Mac App Store no Mac OS X Mavercks (Foto: Reprodução/Marvin Costa)Acesse as configurações da Mac App Store no Mac OS X Mavercks (Foto: Reprodução/Marvin Costa)
Passo 3. Marque a opção “Transferir as novas atualizações disponíveis em segundo plano”.
Marcando as opções de transferências automáticas no Mac OS X Mavericks (Foto: Reprodução/Marvin Costa)Marque as opções de transferências automáticas no Mac OS X Mavericks (Foto: Reprodução/Marvin Costa)

quinta-feira, 2 de junho de 2016

Desative a renovação automática para cancelar sua assinatura Apple

Caso deseje cancelar a assinatura do Apple Music, desative a renovação automática.

Sua assinatura poderá ser renovada se você não desativar a Renovação Automática mais de oito horas antes da data de sua renovação.

No iPhone, iPad ou iPod touch

  1. No app Música, toque no ícone do seu perfil no canto superior esquerdo.
  2. Toque em Ver ID Apple. Pode ser necessário iniciar uma sessão.
  3. Em Assinaturas, toque em Gerenciar.  Caso você tenha mais de uma assinatura, toque em Sua Assinatura (Assinatura do Apple Music) para ver suas opções de assinatura.
  4. Em Opções de Renovação, desative a Renovação Automática. Confirme sua seleção e toque em OK.

    Se você não enxergar a opção de desativar a Renovação Automática, sua assinatura será automaticamente interrompida no final do período atual de cobrança.
  5. Toque em OK para voltar à tela da Conta e, em seguida, toque em OK para voltar ao app.

No Mac ou PC

  1. Abra o iTunes.
  2. Clique em Iniciar Sessão e insira o ID Apple.
  3. Clique no seu nome e selecione Informações da Conta no menu.
  4. Digite a senha novamente.
Na tela Informações da Conta:
  1. Role até a seção Ajustes. 
  2. À direita de Assinaturas, clique em Gerenciar. Caso tenha mais de uma assinatura, clique em Editar à direita de Sua Assinatura (Assinatura do Apple Music).
  3. À direita de Renovação Automática, selecione Inativo. Quando solicitado a confirmar, clique em Desativar.
  4. Clique em OK e volte para Informações da Conta e, em seguida, clique em OK para voltar à iTunes Store.

Assinar o Apple Music posteriormente

Mesmo que você tenha recusado a oferta de assinatura do Apple Music quando abriu o app Música ou o iTunes pela primeira vez, é possível assiná-lo posteriormente.

No iPhone, iPad ou iPod touch

  1. Em Ajustes, toque em Música.
  2. Ative Mostrar Apple Music.
  3. Toque em Assinar Apple Music.
  4. Toque na aba Para Você e, em seguida, toque em Iniciar teste gratuito de três meses.
  5. Siga as instruções na tela para assinar o Apple Music.

No Mac ou PC

  1. Abra o iTunes.
  2. Mac: na barra de menus na parte superior da tela do computador, selecione iTunes > Preferências.
    Windows: mantenha pressionadas as teclas Control e B no teclado para ativar a barra de menus do iTunes. Escolha Editar > Preferências. Saiba mais sobre os menus do iTunes para Windows.
  3. Clique na caixa ao lado de Mostrar Apple Music para ativá-lo e clique em OK. 
  4. Clique na aba Para Você para ver a oferta de assinatura.
  5. Siga as instruções na tela para assinar o Apple Music.

Como mover senhas e favoritos entre Microsoft Edge Chromium

  Press  Win + R  keys to open up the  Run  dialog box. Type  %LocalAppData%\Microsoft\Edge\User Data  and press  enter . Move the  Default ...