Skip to content

Commit 740e79b

Browse files
000-701: espanol
1 parent d68d69b commit 740e79b

File tree

3 files changed

+154
-1
lines changed

3 files changed

+154
-1
lines changed

articles/en/SharePointOnline/findctIDPS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ Get-SPOContentType | where {$_.Name -eq "Task"} | select id
358358

359359
# See Also
360360

361-
[Get content type ID using User Interface](https://powershellscripts.github.io/articles/en/SharePointOnline/findctID/)
361+
[Get content type ID using User Interface](https://powershellscripts.github.io/articles/en/SharePointOnline/findctid/)
362362

363363

364364

articles/es/mailboxes.md

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
---
2+
layout: page
3+
title: 'Exchange Online: ¿A qué buzones tiene acceso el usuario?'
4+
hero_image: '/img/IMG_20220521_140146.jpg'
5+
show_sidebar: false
6+
hero_height: is-small
7+
date: '2025-02-01'
8+
---
9+
10+
**El artículo describe una forma de verificar los derechos de acceso de un usuario a los buzones de otras personas.**
11+
12+
## Verificar quién tiene acceso a un solo buzón
13+
14+
Para verificar quién tiene acceso a un solo buzón, ejecuta el siguiente cmdlet:
15+
16+
```powershell
17+
Get-MailboxPermission -Identity arleta
18+
```
19+
20+
*arleta* - identidad del buzón, por ejemplo: arleta@testova365.onmicrosoft.com
21+
22+
En la captura de pantalla a continuación, puedes ver que user2@testova365.onmicrosoft.com tiene derechos de acceso completo (*FullAccess*) en el buzón. Pero, ¿cómo comprobar a qué buzones tiene acceso user2 y cuántos son?
23+
24+
<img src="/articles/img/mail.png" width="600" >
25+
26+
<br/><br/>
27+
28+
## Verificar a qué buzones tiene acceso un usuario
29+
30+
No existe un cmdlet directo, pero podemos iterar a través de todos los buzones existentes y verificar los derechos de un usuario específico:
31+
32+
33+
```powershell
34+
$mailboxes = Get-Mailbox -Resultsize Unlimited
35+
36+
foreach($mailbox in $mailboxes){
37+
Get-MailboxPermission -Identity $mailbox.Identity -User user2@testova365.onmicrosoft.com
38+
}
39+
```
40+
41+
<img src="/articles/img/mail2.png" width="600" >
42+
43+
La columna *AccessRights* muestra el nivel de acceso a cada buzón individual. El buzón propio del usuario no se mostrará.
44+
45+
<br/><br/>
46+
47+
## Exportar a CSV
48+
El informe sobre los permisos de un usuario puede exportarse a un archivo CSV:
49+
50+
```powershell
51+
foreach($mailbox in $mailboxes){
52+
Get-MailboxPermission -Identity $mailbox.Identity -User user2@testova365.onmicrosoft.com | export-csv c:\maiperms.csv -Append
53+
}
54+
```
55+
56+
<br/><br/>
57+
58+
## Otros Idiomas
59+
Este artículo está disponible en otros idiomas:
60+
61+
[Exchange Online: What mailboxes has User access to? (en-US)](https://powershellscripts.github.io/articles/en/Other/mailboxes/)
62+
63+
[Exchange Online: Do jakich skrzynek użytkownik ma dostęp? (pl-PL)](https://powershellscripts.github.io/articles/pl/mailboxes/)
64+
65+
[Exchange Online: lister les boîtes aux lettres auxquelles un utilisateur a accès (fr-FR)](https://powershellscripts.github.io/articles/fr/mailboxes/)
66+
67+
68+
69+
70+
<!-- Default Statcounter code for Mailboxes
71+
https://powershellscripts.github.io/articles/en/Other/mailboxes/
72+
-->
73+
<script type="text/javascript">
74+
var sc_project=13073408;
75+
var sc_invisible=1;
76+
var sc_security="66de07d8";
77+
var sc_client_storage="disabled";
78+
</script>
79+
<script type="text/javascript"
80+
src="https://www.statcounter.com/counter/counter.js"
81+
async></script>
82+
<noscript><div class="statcounter"><a title="Web Analytics
83+
Made Easy - Statcounter" href="https://statcounter.com/"
84+
target="_blank"><img class="statcounter"
85+
src="https://c.statcounter.com/13073408/0/66de07d8/1/"
86+
alt="Web Analytics Made Easy - Statcounter"
87+
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
88+
<!-- End of Statcounter Code -->

articles/es/test.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
- label: SharePoint Online
2+
items:
3+
4+
-label: Design and Branding
5+
items:
6+
- name: Customize your site header using PnP
7+
link: /articles/en/SharePointOnline/setsiteheaderPnP/
8+
- name: Customize your page header
9+
link: /articles/en/SharePointOnline/custompageheader
10+
- name: Create SharePoint theme using Theme Generator tool
11+
link: /articles/en/SharePointOnline/Create SharePoint theme using Theme Generator tool/
12+
- name: SharePoint list view - hide new button
13+
link: /articles/en/spo/hidebuttons
14+
15+
-label: Content Types
16+
items:
17+
18+
- name: Add content type using Powershell and CSOM
19+
link: /articles/en/SharePointOnline/Add content type/
20+
- name: SharePoint content types in Powershell - known errors
21+
link: /articles/en/SharePointOnline/SharePoint content types in Powershell - known errors
22+
- name: SharePoint content types - fieldlinks and fields
23+
link: /articles/en/SharePointOnline/SharePoint content types - fieldlinks and fields
24+
- name: Find content type ID
25+
link: /articles/en/SharePointOnline/findctid
26+
- name: Find content type ID using Powershell
27+
link: /articles/en/SharePointOnline/findctIDPS
28+
29+
-label: Permissions
30+
items:
31+
- name: Add SharePoint site permissions to a group using PnP
32+
link: /articles/en/SharePointOnline/addpermgroup
33+
- name: SharePoint Claims Deep Dive
34+
link: /articles/en/SharePointOnline/spoclaims
35+
36+
37+
- name: Migrate OneDrive across tenants
38+
link: /articles/en/SharePointOnline/Migrate OneDrive across tenants/
39+
- name: Export your folder structure to XML using Powershell
40+
link: /articles/en/SharePointOnline/Exportfolderstructure
41+
- name: Easy way to create CAML Query for list view
42+
link: /articles/en/SharePointOnline/CAMLQueryForListView
43+
- name: Hide Teams Prompt
44+
link: /articles/en/SharePointOnline/HideTeamsPrompt
45+
- name: Conditional query in PNP Search Webpart
46+
link: /articles/en/SharePointOnline/pnpsearchqcond
47+
- name: PnP Search query examples with KQL
48+
link: /articles/en/SharePointOnline/pnpsearchqex
49+
50+
- name: Update SharePoint list item without changing the modified date
51+
link: /articles/en/SharePointOnline/systemupdateitem
52+
- name: Update SharePoint folder without creating a new version
53+
link: /articles/en/SharePointOnline/systemupdatefolder
54+
- name: Count files in a folder using Powershell
55+
link: /articles/en/SharePointOnline/countfiles
56+
- name: Count files or items with unique permissions using Powershell
57+
link: /articles/en/SharePointOnline/countfilesunique
58+
- name: Get version history programmatically
59+
link: /articles/en/SharePointOnline/getversionhistory
60+
61+
- name: Compare SharePoint tenant settings
62+
link: /articles/en/spo/comparetenants
63+
- name: Create SharePoint dashboard
64+
link: /articles/en/spo/createdashboard
65+

0 commit comments

Comments
 (0)